Possible Duplicate:
jQuery single selector vs .find()
Is there any difference between $(Parent Child) and $(Parent).find(Child) in jQuery?
You may have multiple children like:
$("div").find("span")
which will return all the children spans. But isn't it the same with $("div span")
?