find second tr in table jquery code example
Example: jquery select the 3rd row of a table
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable