State Candidates

Candidates

.hl {color:red; background-color:yellow}

Low Cost Table Row Hover Event

bgcolor=”#f5f5f5″>

Test 1 Test 2
stuff stuff
stuff stuff
stuff stuff
stuff stuff
stuff stuff
stuff stuff

$(document).ready(function() {

$(“#test tr”).hover(function() {

$(this).addClass(“hl”);

},function(){

$(this).removeClass(“hl”);

});

});