how to get nth tr in js

Solutions on MaxInterview for how to get nth tr in js by the best coders in the world

showing results for - "how to get nth tr in js"
Diane
10 Jul 2019
1var value = $('table')
2              .find('tr:eq(3)') // get the 4th table row
3              .find('td:eq(4)') // get the 5th table cell in that row
4              .text();          // get the text inside that cell
5
similar questions
queries leading to this page
how to get nth tr in js