I have HTML like:
<div id='content'>
<div id='price'>$100</div>
<div id='another'>something</div>
</div>
I can get content from id="content" like.
vl = document.getElementById("content").value;
In this id, I have another id="price"
. But I cannot get directly content from id="price".
How can I get content from id="price" through id='content'
.Thank you.