jquery get current row value

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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