<div>
<p>
<a></a>
</p>
</div>
In the code above, for jQuery, we can use $('div p a') to get the <a> element, but in javascript, how can we do get <a> element like $('div p a')?
Updated 2
If I have many <a> element and I don't know the index of the specific <a> element, I just know this specific <a> element is under <div id="some">, how can I get the <a> element by javascript?