Friday, September 16, 2016

jQuery: Traversing All Rows Except Table Headers

j$('#lineItemsTable > tbody > tr').not('thead tr').each(function()
{
     // logic here
});

No comments:

Post a Comment