i want to call 2nd child of same class in jquery code example
Example 1: jquery get 2nd child
$(t).children('td').eq(1);
Example 2: jquery get 2nd child
$(t).children().eq(1);
$(t).children('td').eq(1);
$(t).children().eq(1);