jQueryThis code is part of the the jQuery Base module.
This function hides all the matched elements, so that they are no longer shown on the screen.
Example:
$("p").hide();
This function reveals all the matched elements, so that they are shown on the screen.
Example:
$("p").show();
This function reveals all hidden, matched, elements and hides are visible, matched, elements.
Example:
$("p").toggle();