I have HTML like this in a string:
<div style="" class="">
<div style="" class="">
<h1>test</h1>
<p>
text
</p>
</div>
</div>
How can I use jQuery to remove the <div>'s and just keep the inner HTML:
<h1>test</h1>
<p>
text
</p>