jQuery :visible Selector
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")
  Copyright 1999-2023 by Refsnes Data. All Rights Reserved.