Highlight row by cell value
$(document).ready(function(){ $('#DataObject1 tr td').each(function(){ if ($(this).text() == 'MyValue' ) { $(this).parent().css('background-color','#FFCC99'); } }); });
$(document).ready(function(){ $('#DataObject1 tr td').each(function(){ if ($(this).text() == 'MyValue' ) { $(this).parent().css('background-color','#FFCC99'); } }); });