Moving an element to the body using jQuery
- by DanC
How can I move an element to the end of the body?
Using jQuery, I want some given element to be moved to the body, preferably to be the last element contained by it.
Imagine the following would be valid:
$('#myElement').moveToTheEndOfTheBody();
Thanks!