Select visible elements

Description

The following code shows how to select visible elements.

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() {<!-- ww  w .  jav  a 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





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities