I\'m trying to remove everything in the whole body, except of a single element and its children. How can I accomplish this?
Edit 1 Consider the foll
You can do it like this:
$('body > *:not(#dondelete)').remove();
Where your element has id="dondelete" and is a child of body.
id="dondelete"