Created
November 4, 2013 08:10
-
-
Save aradnom/7299551 to your computer and use it in GitHub Desktop.
It bugs the hell out of me that you can't conveniently filter Craigslist search results for only things in a specific city. This filters out trash rows based on criteria in the regex.
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
$( $.grep( $('#toc_rows .row'), function ( el ) { return /Sparks|Carson|Tahoe|Zephyr\sCove|Tahoma|Genoa|Wingfield|Vizcaya|Dayton|Gardnerville|Stead|Stagecoach|Fernley|Stateline|Silver\sSprings|Lovelock/gi.test( $(el).find('.l2 .pnr small').text() ); } ) ).remove() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment