How to make a certain HTML before another div? I tried using prepend
but it poe at the beginning inside the div but I want it to put above / before and out of it, using prepend
it looks like this:
<div class="pai"><div>FILHO</div></div>
But the correct and necessary for me would be like this:
<div>FILHO</div><div class="pai"></div>
Is it possible with what code?