I have a bit of a problem and I'm not sure if it's possible with js.
Lets say I have a p
Element.
<p class="test> text text text </p>
Is it possible that jquery would be able to turn the statement above into this.
<div class="new_created">
<p class="test> text text text </p>
</div>
All on run-time and assuming I can't manually modify it myself. Would appreciate any help on this. Thanks