jquery get current row value

Solutions on MaxInterview for jquery get current row value by the best coders in the world

showing results for - "jquery get current row value"
Koby
06 Sep 2019
1function test(){
2    var id = $(this).closest("tr").find('td:eq(2)').text();
3    alert(id);
4}
5