I have table that I have to loop through the rows and skip the first row. I try to locate it and compare it but it didn't works.
var headerTr = $("GridView tr .header");
$("#GridView tr").each(function() {
$this = $(this);
if (headerTr === $this) {
$this.show();
} else {
$this.hide();
}
});