get 2 td search code example
Example 1: jquery get second td of tr
$(this).closest('tr').find('td:nth-child(2)').text()
Example 2: how to select second element in jquery
$("div:eq(1)");
$(this).closest('tr').find('td:nth-child(2)').text()
$("div:eq(1)");