2
How to remove only the parent element, without also remove child elements with jQuery. Having this structure for example:
<a href="#">
<p>A</p>
<p>B</p>
<p>C</p>
</a>
With the intention of removing the parent(), after the function the structure would look like this:
<p>A</p>
<p>B</p>
<p>C</p>
Thank you very much!
– Tales Breno