Hi,
I am new to jquery. I have this in my code:
$("tbody tr:odd ").addClass("alt");
with css:
tbody tr.alt td {
background-color: #e6EEEE;
}
I have a cell in table with
<td class="coloron">
Right now, the every other row command is over riding my class="coloron".
How can I maintain my cell unique colour while having every other row colouring?