Assume I have a webpage with the following structure:
Now I want to cut the element with the class="blahblah" (including its inner content) from its original place
and paste it just before the closing </div> for the element <div class="foobar">
How can I do this with jQuery?
If necessary the operation can be split into two jQuery statements.
However a one-liner is preferred.
Thank you
Peter