Remove IE7 activex borders


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. theObjects = document.getElementsByTagName("object");
  2. for (var i = 0; i < theObjects.length; i++) {
  3. theObjects.outerHTML = theObjects.outerHTML;
  4. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.