Created
July 22, 2015 15:57
-
-
Save ss81/b8b87e382ae97f7f61d1 to your computer and use it in GitHub Desktop.
Show only table rows with required value.
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
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