showing results for - "get id of first td jquery"
Giorgio
03 Apr 2017
1$(".hit").click(function(){    
2   var value=$(this).closest('tr').children('td:first').text();
3   alert(value);    
4});
5