Home Ajax Jquery Miscellaneous Traversing



Miscellaneous Traversing
Posted on: April 18, 2011 at 12:00 AM
This page discusses - Miscellaneous Traversing

Miscellaneous Traversing

     

Miscellaneous Traversing

Miscellaneous Traversing have following method :

.add()

This method add elements to the set of matched element.

Example :

$("p").add("span").css("background", "yellow")

.andSelf()

This method add the previous selection to the current selection.

Example :

$("div").find("p").andSelf().addClass("border");

.contents()

This method find all the child nodes inside the matched elements (including text nodes), or the content document, if the element is an iframe.

Example :

$("p").contents().filter(function(){ return this.nodeType != 1; }).wrap("<b/>");

.end()

This method ends the most recent filtering operation in the current chain and return the set of matched elements to its previous state.

Example :

<script>$("p").find("span").end().css("border", "2px red solid");</script>

This method selects all paragraphs, finds span elements inside these, and reverts the selection back to the paragraphs.

Learn from experts! Attend jQuery Training classes.

Related Tags for Miscellaneous Traversing:


More Tutorials from this section

Ask Questions?    Discuss: Miscellaneous Traversing  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.