To select a child node in jQuery one can use children() but also find().
For example:
$(this).children(\'.foo\');
gives the same result
Here is a link that has a performance test you can run. find() is actually about 2 times faster than children().
find()
children()