jQuery nextAll() by class name

Description

jQuery nextAll() by class name

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.siblings * {/*from   w ww .  j a v  a  2s  .  co m*/
  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(){
  $("li.start").nextAll(".first")
       .css({"color": "red", "border": "2px solid red"});
});
</script>
</head>
<body>

<div style="width:500px;" class="siblings">
  <ul>ul (parent)
    <li>li (sibling)</li>
    <li>li (sibling)</li>
    <li class="start">li</li>
    <li class="first">li</li>
    <li>li</li>
    <li class="first">li</li>
  </ul>
</div>

</body>
</html>



PreviousNext

Related