Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

necro weed posting considered harmful

Name: Anonymous 2010-06-02 13:12

on the other hand /prog/ actually was good once

Name: Anonymous 2010-06-02 14:48

Hey /prog/, I tried whipping up a quick greasemonkey script to hide the necrothreads, but I can't see why this doesn't remove all threads not created this year. Any chance you can tell me where I've went wrong?
var dateregex = /^2010/;
var threads = document.getElementsByClassName('thread');
for (i=0; i<threads.length; i++) {
  var thread = threads[i];
  var opdate =  thread.getElementsByClassName('posterdate')[0].firstChild.nodeValue;
  if (!dateregex.test(opdate)) {
    var parent = thread.parentNode;
    var grandparent = parent.parentNode;
    grandparent.removeChild(parent);
  }
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List