up vote 32 down vote favorite
9
share [g+] share [fb]

To select a child node in jQuery one can use children() but also find().

For example:

$(this).children('.foo');

gives the same result as:

$(this).find('.foo');

Now, which option is fastest or preferred and why?

link|improve this question

69% accept rate
feedback

3 Answers

up vote 59 down vote accepted

Children only looks at the immediate children of the node, while find traverses the entire DOM below the node, so children will be faster. Which to use depends on whether you only want to consider the immediate descendants or all nodes below this one in the DOM.

link|improve this answer
D'oh, too slow. ;) – John Feminella Mar 15 '09 at 15:50
5  
Sure, but what happens if the parent element only has child nodes? I'm going to do some profiling on this. – jason Jul 17 '10 at 22:01
feedback

Those won't necessarily give the same result: find() will get you any descendant node, whereas children() will only get you immediate children that match.

Thus, find() will be slower since it must search for every descendant node that could be a match, and not just immediate children.

link|improve this answer
feedback

This jsPerf test suggests that find() is faster. I created a more thorough test, and it still looks as though find() outperforms children().

Update: As per tvanfosson's comment, I created another test case with 16 levels of nesting. find() is only slower when finding all possible divs, but find() still outperforms children() when selecting the first level of divs.

children() begins to outperform find() when there are over 100 levels of nesting and around 4000+ divs for find() to traverse. It's a rudimentary test case, but I still think that find() is faster than children() in most cases.

I stepped through the jQuery code in Chrome Developer Tools and noticed that children() internally makes calls to sibling(), filter(), and goes through a few more regexes than find() does.

find() and children() fulfill different needs, but in the cases where find() and children() would output the same result, I would recommend using find().

link|improve this answer
3  
It seems that children uses dom traversal methods and find uses the selector api, which is faster. – topek Oct 7 '11 at 20:29
Pretty degenerate test case since you only have one level of nesting. If you want the general case you'll have to set up some arbitrary nesting depths and check the performance as find() traverses deeper trees than children(). – tvanfosson Oct 31 '11 at 22:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.