php - using CSS to hide certain tr with specific class name only if it contain keyword -
i have many tr
s have same class name - sectiontableentry1.
want tr
hidden if contains keyword, such "recommended".
here example http://jsfiddle.net/aqfqk/1/
if not misstaken, looking :
$('.sectiontableentry1').each(function(){ if($(this).html().indexof('recommended') != -1){ $(this).hide() } })
since want little blurry me, tell me if wrong.
Comments
Post a Comment