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.
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.
Ask Questions? Discuss: Miscellaneous Traversing
Post your Comment