Created
December 3, 2015 23:28
-
-
Save jesuscast/1dc75891240fef29b9a0 to your computer and use it in GitHub Desktop.
hides deleted ads from your craigslist account.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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