How can I remove an element but not the content inside that element?
<a href="#">
<span>
<img src="pic-1.jpg"/>
</span>
</a>
I want to remove the span
that wraps the image.
So I can get,
<a href="#">
<img src="pic-1.jpg"/>
</a>