Skip to content

Instantly share code, notes, and snippets.

@drnic
Created February 15, 2009 08:56
Show Gist options
  • Save drnic/64657 to your computer and use it in GitHub Desktop.
Save drnic/64657 to your computer and use it in GitHub Desktop.
var list = $$('ul.entry-list li');
for (var i = 0; i < list.length; i++) {
var li = list[i];
if (!(li.innerHTML.match(/Available for hire/))) {
li.parentNode.removeChild(li);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment