I have a that is populated with javascript after the initial page load. I\'m currently using .bind with mouseover and
.bind
mouseover
$("#MyTableData").on({ mouseenter: function(){ //stuff to do on mouse enter $(this).css({'color':'red'}); }, mouseleave: function () { //stuff to do on mouse leave $(this).css({'color':'blue'}); }},'tr');