jQuery parentsUntil() stop by DOM object

Description

jQuery parentsUntil() stop by DOM object

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.ancestors * {//from w  ww  .  j a  v a 2s . c  om
  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 DOM = document.getElementsByClassName("greatgp");
  $(".child").parentsUntil(DOM).css({"color": "red", "border": "2px solid red"});
});
</script>
</head>

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



PreviousNext

Related