0

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();
  }
});
Stphane
  • 3,368
  • 5
  • 32
  • 47
Adriano
  • 874
  • 2
  • 11
  • 37

0 Answers0