Appearance
empty(): this
Used for clearing the innerHTML of the selected elements.
<div> <span>Text inside!</span> </div>
$('div').empty();
The HTML will be updated to:
<div></div>