I have table row object in my scope. And I can get it as a link is clicked on that row.
var tableRow = $(object).closest('tr');
What I need is to iterate this table columns of row by table header columns.
For example :
th1 th2 th3
tr1 td td td
tr2 td td td*
Lets say, I have tr2 in my scope, and I need to reach at cell under th3. When I iterate its cells, how can I know cell is under th3?
I want to that without using column index, but instead using column name.
<thead>, or simple the first row in<tbody>.