$('table tr').mouseover(function() {
$(this).addClass('hovered');
}).mouseout(function() {
$(this).removeClass('hovered');
});
The following code lets me easily highlight each table row on a mouseover - however, I don't want to highlight the first row.
Any ideas how to achieve this?