Add a red color to all previous sibling elements of <h2>. - Javascript jQuery

Javascript examples for jQuery:Tag Traversing

Description

Add a red color to all previous sibling elements of <h2>.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
.siblings * {/*from   w  ww . j  ava2  s  .  c o 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").prevAll().css({"color": "red"});
});
</script>
</head>
<body class="siblings">

<div>div (parent)
  <p>p</p>
  <span>span</span>
  <h2>h2</h2>
  <h3>h3</h3>
  <p>p</p>
</div>

</body>
</html>

Related Tutorials