Description
The :hidden selector selects all elements that are hidden.
Hidden elements are elements that are:
- set to display:none
- form elements with type="hidden"
- Width and height set to 0
- A hidden parent element (this also hides all child elements)
v1.0
This method has the form:
$(":hidden")
Examples
Select all <p>
elements that are hidden:
$("p:hidden")