I have a HTML table where I am dynamically adding and hiding rows and I want the current set of visible rows to always show with alternative backcolor for easy reading.
I have the following code that works fine functionally, but is really slow (especially on Internet Explorer browsers)
$('table.alternateRow tr:visible').removeClass('odd').filter(':odd').addClass('odd');
here is my css:
.alternateRow tr {
background-color: #FFFFFF;
}
.alternateRow tr.odd {
background-color: #DEDEDE;
}
Is there any faster solution for this code above that applies to visible rows but doesn't freeze in Internet Explorer. My table has about 150 - 200 rows visible
Also, (for certain reasons) I want to avoid paging if possible (as a last resort) as it makes the report much harder to read

tr:visible. Add a class for rowsvisible. When you are hiding a row then remove this class. And then try to usetr.visibleinstead oftr:visible. – Karolis Jun 23 '11 at 12:05