JavaScript Получите 2 -й дочерний элемент

//you can use the css nth-child property like this:
var second-child = document.querySeletorAll('[your element name]:nth-child(2)');
Wicked Warbler