I have an XML document that resembles –
<Results>
<Data>
<div id = 'id_div1'>
<b>Hello World!</b>
</div>
</Data>
</Results>
Knowing that my HTML is contained within the ‘Data’ element, using JavaScript how can I get
<div id = 'id_div1'><b>Hello World!</b></div> ?
-snip-
Edit
it’s a lot simpler than all this…