second input child jquery 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
$(t).children('td').eq(1);
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable