I know you can use .find to find td:contains('text'), but if I have a tr with say, 3 td's, and one of the td's might have class="specialclass someotherclass" (may potentially have other classes in addition to special class), how do I use jquery to check if a TR contains a TD of specialclass?
if($('tr').find('td.specialclass').length>0 || $('tr').find('td[class*="specialclass"]').length>0) ...that's your check and direct query selection goes the same way. What you're looking for?