CSS:
Code: Select all
tr:hover td,
tr.even:hover td.active,
tr.odd:hover td.active {
background-color: #EBEBEB ;
}
Code: Select all
$(document).ready(function()
{
$("tr:odd").css("background-color", "#dfe7f2");
});
Moderator: General Moderators
Code: Select all
tr:hover td,
tr.even:hover td.active,
tr.odd:hover td.active {
background-color: #EBEBEB ;
}
Code: Select all
$(document).ready(function()
{
$("tr:odd").css("background-color", "#dfe7f2");
});