almost 9 years ago
It returns all the sibling elements of the element that you have selected.
It allows you to go through the siblings of the matched elements in the DOM tree and creates a new jQuery object from the matching elements.
Lets see how it works:
HTML:
<div style="width:450px;" class="parentSibling">
<ul>sibling Parent
<li>sibling previous</li>
<li>sibling previous</li>
<li class="sibling">li (sibling)</li>
<li>sibling next</li>
<li>sibling next</li>
</ul>
</div>
<div style="width:450px;" class="parentSibling">
<ul>sibling Parent
<li>sibling previous</li>
<li>sibling previous</li>
<li class="sibling">li (sibling)</li>
<li>sibling next</li>
<li>sibling next</li>
</ul>
</div>
JS:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
$(document).ready(function(){
$("li.sibling").siblings().css({"color": "blue", "border": "2px solid blue"});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
$(document).ready(function(){
$("li.sibling").siblings().css({"color": "blue", "border": "2px solid blue"});
});
CSS:
You can also download the demo attached.
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)