I have a table, and usually i use this selector to apply odd and even row:
table.find('tbody tr:even').addClass('even');
table.find('tbody tr:odd').removeClass('even');
My Table has rows being inserted at various places, hence why i remove it from the odd rows.
I now have certain rows hidden using
jQueryTrObject.hide();
I want to apply the same styling as before, so that alternate rows, as far as the user is concerned are marked up odd and even, and i’d like it to take into account of hidden rows.
How do i write a selector to do this, for do i have to use the each and specifically check?
use the
:visibleselectorRemember to use it first so that the
:evenfilter applies after it.