How can I retrieve the children of a specific div that belongs to the "vid_div selected" class? First, I select the correct div using this code:
var vid_div = document.getElementsByClassName('vid_div selected');
However, when attempting to access its children, I receive an undefined result:
var vid = vid_div.children; //this returns undefined