hidden selector
Description: Selects all elements that are hidden.
version added: 1.0jQuery( ":hidden" )
Elements can be considered hidden for several reasons:
- They have a CSS
display
value ofnone
. - They are form elements with
type="hidden"
. - Their width and height are explicitly set to 0.
- An ancestor element is hidden, so the element is not shown on the page.
Elements with visibility: hidden
or o