Skip to content

Instantly share code, notes, and snippets.

@jlewin
Created April 13, 2013 18:52
Show Gist options
  • Select an option

  • Save jlewin/5379602 to your computer and use it in GitHub Desktop.

Select an option

Save jlewin/5379602 to your computer and use it in GitHub Desktop.
Filter RCGroups.com forum results for a given term, using jQuerify
$('#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