Skip to content

Instantly share code, notes, and snippets.

@qinshulei
Created January 15, 2016 04:44
Show Gist options
  • Select an option

  • Save qinshulei/42c0badf7c145ca9e08b to your computer and use it in GitHub Desktop.

Select an option

Save qinshulei/42c0badf7c145ca9e08b to your computer and use it in GitHub Desktop.
filter the table row content in web page
$(document).ready(function() {
$("#xwikicontent tr").each(function(){
var content = $(this).text();
if (content.indexOf("8992") < 0){
$(this).css('display', 'none');
} else {
$(this).css('display', '');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment