Skip to content

Instantly share code, notes, and snippets.

@jesuscast
Created December 3, 2015 23:28
Show Gist options
  • Save jesuscast/1dc75891240fef29b9a0 to your computer and use it in GitHub Desktop.
Save jesuscast/1dc75891240fef29b9a0 to your computer and use it in GitHub Desktop.
hides deleted ads from your craigslist account.
$(".status").each(function(index, element) { if($(element).html().indexOf("Deleted") != -1 ) { $(element).parent().hide(); }; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment