Highlight row by cell value

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