Name: Anonymous 2009-01-04 21:52
anyone made/know of any good scripts?
var fire = [];
var fags = document.getElementsByClassName('postertrip');
var n;
for (n in fags) {
var fag = fags[n];
if (fag.parentNode.tagName == 'A')
fag = fag.parentNode;
if (fag.parentNode.tagName == 'TD')
fire.push(fag.parentNode);
else {
while (fag && fag.className != 'filesize')
fag = fag.previousSibling;
if (fag) do {
if (!(fag.id && fag.id.substr(0, 8) == 'nothread'))
fire.push(fag);
fag = fag.nextSibling;
} while (fag && fag.className != 'omittedposts' && fag.tagName != 'TABLE');
}
}
for (n in fire)
fire[n].parentNode.removeChild(fire[n]);