Allows you to destroy an Element while leaving its contents in place.
# HTML
<div>
<div id="removeMe">
This text will be in place of the <em>removeMe</em> element.
</div>
</div>
# JS
$('removeMe').removeTag();
# HTML
<div>
This text will be in place of the <em>removeMe</em> element.
</div>