jquery using parent() and n-child selectors together code example
Example 1: how to select second element in jquery
$("div:eq(1)");
Example 2: jquery get 2nd child
$(t).children().eq(1);
$("div:eq(1)");
$(t).children().eq(1);