table tr:hover{ background: #00FFFF; }
$(document).on("mouseover",".myRow",function(){ $(this).css({ "background-color":"#00FFFF" }); }); $(document).on("mouseout",".myRow",function(){ $(this).css({ "background-color":"#FFFFFF" }); });