Skip to content

Instantly share code, notes, and snippets.

@Kambfhase
Created February 22, 2013 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kambfhase/5014460 to your computer and use it in GitHub Desktop.
Save Kambfhase/5014460 to your computer and use it in GitHub Desktop.
$.fn.filterByPattern = function( string){
var regex = new RegExp( string, "ig");
return this.hide().filter(function(){
return regex.test($(this).text());
}).show();
};
$('div').filterByPattern("parents");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment