jQuery - mouseOver()

Simple JQuery Table Row Event Handler
   
   
   
   
   
   

$('#DemoTable tr')
    .bind('mouseover', function () { $(this).css('background-color', 'yellow') })
    .bind('mouseout', function () { $(this).css('background-color','white')});