Skip to content

Instantly share code, notes, and snippets.

@ss81
Created July 22, 2015 15:57
Show Gist options
  • Save ss81/b8b87e382ae97f7f61d1 to your computer and use it in GitHub Desktop.
Save ss81/b8b87e382ae97f7f61d1 to your computer and use it in GitHub Desktop.
Show only table rows with required value.
jQuery('#block-system-main table:not(.sticky-header) tr').each(function(){
if (jQuery(this).text().indexOf('Term reference (module: Taxonomy)') == -1) {
jQuery(this).hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment