If you know the child element you’re interested in is the first:
$('.second').children().first();
Or to find by index:
var index = 0
$('.second').children().eq(index);
If you know the child element you’re interested in is the first:
$('.second').children().first();
Or to find by index:
var index = 0
$('.second').children().eq(index);