jQuery find() find by jQuery object

Description

jQuery find() find by jQuery object

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.ancestors * {// ww  w  .ja  va 2s.com
  display: block;
  border: 2px solid lightgrey;
  color: lightgrey;
  padding: 5px;
  margin: 15px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  var $findSpanElements = $("span");
  $("ul").find($findSpanElements)
       .css({"color": "red", "border": "2px solid red"});
});
</script>
</head>

<body class="ancestors">body
  <div style="width:500px;">div
    <ul>ul
      <li>li
        <span>span
              <span>span
                  <span>span</span>
              </span>
        </span>
      </li>
      <li>li
        <span>span</span>
      </li>
    </ul>
  </div>
</body>

</html>



PreviousNext

Related