Remove the set of matched elements from the DOM.
// <div class="box">A</div><div class="box">B</div>
$('.box').remove();
// Elements are removed from DOM.
// Returns SR object (now empty of elements)
Also removes all event handlers and internal data associated with the matched elements and their descendants to prevent memory leaks.
Returns: The SR object (emptied of its internal element list).