Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
Much simplified version: (function() { var tags = document.getElementsByTagName("a"); var numofAnchorTags = tags.length; var x = 0; while(x < numofAnchorTags) { try { if (tags[x].hasAttribute('ping')) tags[x].removeAttribute('ping'); } catch(e) {} x++; } })(); |