Select children by class name

Description

The following code shows how to select children by class name.

Example


<html>
<head>
<script type="text/javascript"
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from   w ww.  j a  v a  2s  .  c  o  m-->
    $("div").children(".selected").css("color", "blue");
  });
</script>
</head>
<body>
  <div id="container">
    <div class="selected">And Again</div>
    <div>java2s.com</div>
  </div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities