Filter by class name

Description

Filter by class name

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(<!--from  w w w.  j  a  v a  2  s .c om-->
      function() {
        $("div").css("background", "yellow").filter(".blue").css("border-color", "red");
      });
</script>
<style>
div {
  border: 2px white solid;
}
</style>

</head>
<body>
<body>
  <div class=blue>java2s.com</div>
  <div>java2s.com</div>
  <div>java2s.com</div>
  <div>ja va2s.com</div>
  <div>java2s.com</div>
  <div>java2s.com</div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities