Javascript examples for jQuery:Tag Traversing
Add a red color to all sibling elements of <h2>.
<!DOCTYPE html> <html> <head> <style> .siblings * {/*w ww . 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").siblings().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>