Published in: JavaScript
// dynamic table zebrastripes $(document).ready(function(){ $('.zebra tr:even').addClass('alt'); $('tr').mouseover(function(){ // $('tr:not(\'.footerrow\')').mouseover(function(){ $(this).addClass('over');}) .mouseout(function() { $(this).removeClass('over');}); });
You need to login to post a comment.
