I need to loop through all rows for a particular table, and I have done it as below. At one point, I need to remove the matching table row. I couldn\'t figure out how to skip t
You can do this using the :gt() Selector like:
$('#tbl_dynamic_call_dates > tbody > tr:gt(0)').each(function() {...});
$('#tbl_dynamic_call_dates > tbody > tr').not(":first"). [....]
to get everything BUT the first
$('#tbl_dynamic_call_dates > tbody > tr:first'). [...]
or
$('#tbl_dynamic_call_dates > tbody > tr').first(). [...]
to only get the first
Change your selector to this...
$('#tbl_dynamic_call_dates > tbody > tr:not(:first)')
$('#tbl_dynamic_call_dates > tbody > tr:gt(0)').each(/*...*/);
Or:
$('#tbl_dynamic_call_dates > tbody > tr').first().siblings().each(/*...*/);