JQuery Programmer Question:
Download Job Interview Questions and Answers PDF
What is .siblings() method in jQuery?
Answer:
1. When we want to fetch siblings of every elements in the set of matched elements then we can use siblings() method.
2. We filter the elements fetched by an optional selector.
3. Syntax : .siblings([selector])
4. "selector" is the selector expression which specify the matched elements.
For example
<ul>
<li> item 1 </li>
<li id="second_item"> item 2 </li>
<li class="myitem"> item 3 </li>
<li class="myitem"> item 4 </li>
</ul>
Now we want to find the siblings of the element of id "second_item" and change the text color to Blue :
$('li.second_item').siblings().css('color','blue');
If we want specific sibling elements for example the elements having class "myitem" then we can pass a optional selector :
$('li.second_item').siblings('.myitem').css('color','blue');
2. We filter the elements fetched by an optional selector.
3. Syntax : .siblings([selector])
4. "selector" is the selector expression which specify the matched elements.
For example
<ul>
<li> item 1 </li>
<li id="second_item"> item 2 </li>
<li class="myitem"> item 3 </li>
<li class="myitem"> item 4 </li>
</ul>
Now we want to find the siblings of the element of id "second_item" and change the text color to Blue :
$('li.second_item').siblings().css('color','blue');
If we want specific sibling elements for example the elements having class "myitem" then we can pass a optional selector :
$('li.second_item').siblings('.myitem').css('color','blue');
Download JQuery Programmer Interview Questions And Answers
PDF
Previous Question | Next Question |
How can we give face effect in jQuery? | What is the difference between find and children methods? |