So far i can get my code to highlite the specific td, but even better would be to highlite the entire row. Does anyone know how to do this?
var mySearch = 'No';
$('table tbody tr td:contains("' + mySearch + '")').filter
(function(){
if($.trim($(this).text()) == mySearch)
$(this).addClass("prequal-status-n");
});
:containsbit of the selector. It will slow your code down significantly, since it is a jQuery extension, so disables the browser's native (querySelectorAll) functionality. Since you're doing the== mySearchtest later on, you don't need the:containscall at all. – lonesomeday Nov 7 '11 at 22:55