jQuery element ~ siblings Selector


The element ~ siblings selector in jQuery is used to select all elements that are siblings of the specified "element".

Syntax

The syntax is as follows −

("ele ~ siblings")

Above, the parameter ele is any valid selector, whereas siblings are the siblings of the ele parameter.

Example

Let us now see an example to implement the jQuery element ~ siblings selector 

 Live Demo

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $("div ~ p").css("color", "orange");
   });
</script>
<style>
div {
   border:1px solid black;
   padding:10px;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<div>
<p>This is demo text.</p>
<span>span outside p element</span>
<p>This is demo text.</p>
</div>
<p>p next to div.</p>
<p>This is demo text.</p>
<div>
<p>This is demo text.</p>
<p>This is demo text. <span>span inside p element.</span></p>
<p>This is demo text.</p>
</div>
</body>
</html>

Output

This will produce the following output−

Updated on: 31-Dec-2019

103 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements