I have already read this webpage http://docs.jquery.com/Traversing/end but i am still clueless on what .end() actually does. How is it for and how do you use it. I am also reading a jquery book but it lightly glazes over .end() and does not give any examples of what its for. Can someone clearify?
vs
Execute these statements separately in Firebug console on this exact page, and notice how different the behaviors are. Basically,
with
The
our current element is body
we used a destructive operation
because find is a "destructive" operation it reverts back to before we did |
|||||||||||||
|
|
It basically goes back to the parent set. For example:
|
|||||
|
|
It backs out the "scope" of a chained JQuery statement to the previous level. Tags in jQuery object initially [$('P')]: P, P Tags in jQuery object after find [$('P').find('SPAN')]: SPAN, SPAN, SPAN, SPAN, SPAN Tags in jQuery object after end [$('P').find('SPAN').end()]: P, P
|
||||
|
|
|
It allows the current "scoping" to end and be re-defined. For example, lets say you have some HTML like:
You could first select the parent by :
And modify the children ul elements like
But what happened if you wanted to continue to to edit the parent element (#people)? You could start a new finder $('#people') or just chain it to the first line, preceeded with an .end() to notify jQuery that you want to "close" the find() and scope the search back to the preceeding find (implicity the $('#people'), like so)
So that line would: grab all the child UL of #people, change their borders to red and then change the border of the parent #people element to dashed and blue. |
|||
|
|
|
The following functions can be used to alter your jQuery selection, typically to make your selection more specific, or inclusive/exclusive: add, andSelf, children, filter, find, map, next, nextAll, not, parent, parents, prev, prevAll, siblings, slice, clone, appendTo, prependTo, insertBefore, insertAfter, or replaceAll
|
||||
|
|