Change html table background color on hover using jquery.A simple way to change background color of rows of table on hover using jquery. In other way, Users may want to know on which table row they are viewing.This simply highlights the table row.
Copy the css down below
.hover{
background-color: rgb(254,252,234);
}
Add jquery code down below in your script tag
$('#tableId tbody tr').hover(function() {
$(this).addClass('hover');
}, function() {
$(this).removeClass('hover');
});

How to focus a check box when validation goes wrong in IE8, i tried a lot but for me it is not working. can you explain it with exanple.
@bharani
Could you please be more specific do you want to focus after validation goes wrong or do you want checkbox to be checked.However, Here is the demo http://jsfiddle.net/CPFrZ/ is this the functionality you are looking for or let me know what else need’s to be done.