jquery element get child code example
Example 1: javascript get element nth child
//you can use the css nth-child property like this:
var second-child = document.querySeletorAll('[your element name]:nth-child(2)');
Example 2: jquery first child
$('div:first-child')