I have HTML with something like
<div class="foo">
<h1>foo 1</h1>
..</div>
<div class="foo">
<h1>foo 2</h1>
..</div>
Finding the div nodes using getElementsByTagName('div') is not a problem.
While iterating of the div nodes I need to find the first H1 inside the subtree of the DIV nodes. Is there something like getElementByTagName() on a DOM node?
document.querySelectorAll('div.foo > h1')– Šime Vidas Apr 11 '11 at 18:30querySelectorrather thanquerySelectorAllmight be a bit better if he only needs the first matching node. – CD Sanchez Apr 11 '11 at 18:35div.querySelector('h1')on each iteration. Yes, that's a great idea. I like that more than the accepted solution (although it's slower). – Šime Vidas Apr 11 '11 at 18:55