THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

jQuery :visible Selector

jQuery Selectors 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 jQuery Selectors