jquery second element code example
Example 1: jquery get 2nd child
$(t).children('td').eq(1);
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
Example 3: how to select second element in jquery
$("div:eq(1)");