Select visible element with visible selector $("div:visible") in jQuery

Description

The following code shows how to select visible element with visible selector $("div:visible").

Example


<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!--from w w  w  .  j  a  va 2s  . co m-->
$("div:visible").click(function () {
$(this).css("background", "yellow");
});
});
</script>
</head>
<body>
<span></span>
<div style="display:none;">java2s.com!</div>
<div>click me</div>
</body>
</html>

Click to view the demo

The code above generates the following result.

Select visible element with visible selector $("div:visible") in jQuery
Home »
  Javascript Tutorial »
    jQuery »
      jQuery Select
...
Select the child of a div element in jQuery
Select the first LI element from selected e...
Select the first parent in jQuery
Select the first row in a table $("tr:first...
Select the first span element after clickin...
Select the first span element $("span:first...
Select the first table row in jQuery
Select the first two table cells by Less th...
Select the hidden div tags with hidden sele...
Select the input element by name and then s...
Select the last row in table with last sele...
Select the last table row in jQuery
Select the next and change its text in jQue...
Select the next elements who has certain cl...
Select the next sibling and apply style in ...
Select the previous element for div and set...
Select the second table row with Greater th...
Select third table cells with Element at in...
Select visible element with visible selecto...
Select with Attribute equals ([foo=bar]) se...
Select with Attribute not equal ([foo!=bar]...
F') selector in jQuery' href='Select_with_Child_E_F_selector_in_jQuery.htm'>Select with Child $('E > F') selector in jQ...
Select with Descendant $('E F') selector in...
Select with ID selector $("ul#myList") in j...
Select with Last child selector in jQuery
Select with Multiple expressions $('E, F, G...
Select with Only child (:only-child) select...
Select with Universal selector $('*') in jQ...
Select with attribute begins with selector ...
Select with attribute contains $('[foo*=bar...
Select with attribute contains word $('[foo...
Select with attribute ends with $('[foo$=ba...
Select with attribute exists selector in jQ...
Select with class name selector $(".myClass...
Select with (:empty) empty selector in jQue...
Select with first child selector in jQuery
Select with form input selector (:input) in...
Select with not(negate) selector $(':not(E)...
...