jquery select second row of table code example
Example 1: jquery get second td of tr
$(this).closest('tr').find('td:nth-child(2)').text()
Example 2: jquery select the 3rd row of a table
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable