When you want to remove all rows except first rows
$(document).ready(function() {
$("someTableSelector").find("tr:gt(0)").remove();
});
No comments:
Post a Comment