- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery siblings() with Examples
The siblings() method in jQuery is used to return all sibling elements of the selected element.
Syntax
The syntax is as follows −
$(selector).siblings(filter)
Above, the filter specifies a selector expression to narrow down the search for sibling elements.
Let us now see an example to implement the jQuery siblings() method −
Example
<!DOCTYPE html> <html> <head> <style> div { width:600px; } .demo * { display: block; background-color; border: 2px solid yellow; color: blue; padding: 10px; margin: 10px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("li.test").siblings().css({"background-color": "orange","color": "white", "border": "3px dashed blue"}); }); </script> </head> <body> <h2>Demo Heading</h2> <div class="demo"> <ul>ul (parent) <li>previous sibling</li> <li>previous sibling</li> <li>previous sibling</li> <li class="test">li (sibling)</li> <li>next sibling</li> <li>next sibling</li> <li>next sibling</li> </ul> </div> </body> </html>
Output
This will produce the following output−
- Related Articles
- jQuery Traversing Siblings
- jQuery element ~ siblings Selector
- jQuery clearQueue() with Examples
- jQuery remove() with Examples
- jQuery dequeue() with Examples
- jQuery detach() with Examples
- jQuery stop() with Examples
- jQuery slideUp() with Examples
- jQuery queue() with Examples
- jQuery delay() with Examples
- jQuery hide() with Examples
- jQuery replaceWith() with Examples
- jQuery position() with Examples
- jQuery prop() with Examples
- jQuery ready() with Examples

Advertisements