javascript get every odd element

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

Also in JavaScript: