when loading my table looks like
<table id="mytable"> <tr><td> </td></tr> //odd color <tr><td> </td></tr> //even color <tr><td> </td></tr> //odd color <tr><td> </td></tr> //even color </table>
with any action he becomes like
<table id="mytable"> <tr><td> </td></tr> //odd color <tr style="display: none;"><td> </td></tr> //even color <tr><td> </td></tr> //odd color <tr><td> </td></tr> <tr><td> </td></tr>` </table>
if the 2nd line is not displayed, the 3rd line should even show color
css
Dilleswari kuncham
source share