i have this code that does alternating rows for a html in jquery:
function AlternateRowColors() {
$("table.altRow1 tr").filter(function() {
return true;
}).filter(':even').addClass('alt');
$("tr.alt td[rowspan]").each(function() {
$(this).parent().nextAll().slice(0, this.rowSpan - 1).addClass('alt');
});
$('ins').css("background-color", "#cfc")
}
this works great (feel free to add suggestions if anything is inefficient above)
the issue that i have now is that i have code that hides a bunch of rows (details on why are not really relevant for this question), the main point is that i want to have a function that can do alternative row colors to current visible rows.
i am hiding rows by simply adding a class to certain rows and them calling .hide() on that class.
is there any suggestion to get alternative row colors (like the above code) but have it work on the visible rows so no matter what is hidden, the table always looks correct in terms of alt row coloring.