I\'m trying to highlight (change background color) of the entire row when the mouse is hovering on a table row. I searched through the Net and it should be working, but it d
tr:hover doesn't work in old browsers.
tr:hover
You can use jQuery for this:
.tr-hover { background-color:#fefefe; }
$('.list1 tr').hover(function() { $(this).addClass('tr-hover'); },function() { $(this).removeClass('tr-hover'); });