Appearance
remove(): this
Used to remove all the selected elements from the DOM.
<div class="element"><div> <p>This will stay!<p> <p class="element"><p>
$('.element').remove();
The HTML will be updated to:
<p>This will stay!<p>