I am deleting table rows with this jquery code as seen on screenshot.
$(":checked").each(function() {
$(this).parent().parent().remove()
});

When i check the checkbox in th tag and click delete also this first tr row deleted. I select all checkbox with this code $(“:checked”) How can select after first checkbox ?
Try this:
Alternatively, if your table header is inside the
theadtag and your body was in thetbodytag, you could use something like this: