Created
April 13, 2013 18:52
-
-
Save jlewin/5379602 to your computer and use it in GitHub Desktop.
Filter RCGroups.com forum results for a given term, using jQuerify
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
| $('#threadslist tr').each(function(x){ | |
| if($(this).text().toLowerCase().indexOf('charger') == -1) { | |
| $(this).hide(); | |
| } | |
| }); '' // Do not output results; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment