jQuery :visible Selector
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery :visible Selector

❮ jQuery Selectors

Example

Select all visible <p> elements:

$("p:visible")
Try it Yourself »

Definition and Usage

The :visible selector selects every element that is currently visible.

Visible elements are elements that are not:

  • Set to display:none
  • Form elements with type="hidden"
  • Width and height set to 0
  • A hidden parent element (this also hides child elements)

Syntax

$(":visible")

❮ jQuery Selectors