Find among selected elements by class name - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:find

Description

Find among selected elements by class name

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.ancestors * {// www  .j av a 2s . c  o m
    display: block;
    border: 2px solid lightgrey;
    color: lightgrey;
    padding: 5px;
    margin: 15px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("div").find(".first").css({"color": "red", "border": "2px solid red"});
});
</script>
</head>

<body class="ancestors">body
  <div style="width:500px;">div
    <ul>ul (direct parent)
      <li class="first">li
        <span>span</span>
      </li>
      <li class="second">li
        <span class="1">span</span>
      </li>
    </ul>
  </div>
</body>

</html>

Related Tutorials