Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
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