Add a red color to all sibling elements between <h2> and <h6>. - Javascript jQuery

Javascript examples for jQuery:Tag Traversing

Description

Add a red color to all sibling elements between <h2> and <h6>.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.siblings * {/*  w w  w  .  j  a  va  2 s .co m*/
    display: block;
    border: 2px solid lightgrey;
    color: blue;
    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(){
    $("h2").nextUntil("h6").css({"color": "red"});
});
</script>
</head>
<body class="siblings">

<div>div (parent)
  <p>p</p>
  <span>span</span>
  <h2>h2</h2>
  <h3>h3</h3>
  <h4>h4</h4>
  <h5>h5</h5>
  <h6>h6</h6>
  <p>p</p>
</div>

</body>
</html>

Related Tutorials