Hide the matched elements.
$('.modal').hide();
<div class="modal" style="display: none;">...</div>
Sets `display: none`. It internally caches the previous display value so .show() can later restore the element to its original display type (block, flex, inline, etc.), rather than forcing `block`.
Returns: The original SR object for chaining.