hello
Row 1, cell 1 Row 1, cell 2
$("tr").not(':first').hover( // mouse enters function () { $(this).css("background","yellow"); }, // mouse leaves function () { $(this).css("background",""); } );