grab the second child:
$(t).children().eq(1);
or, grab the second child <td>:
$(t).children('td').eq(1);
See documentation for children and eq.
grab the second child:
$(t).children().eq(1);
or, grab the second child <td>:
$(t).children('td').eq(1);
See documentation for children and eq.