This may have been asked, but scrolling through about 40+ search results reveals only the jQuery solution. Let\'s say I want to get the first item in an unordered list and a
Using the basic DOM operations:
var ul = document.getElementById('id of ul'); var child = ul.childNodes[0];