Is it the normal behavior of the find() method to search the passed
expression ONLY within child nodes of a wrapped set ?
(which is not explicitly specified in the documentation:
http://docs.jquery.com/Traversing/find#expr)

<ol>
 <li id="one">One</li>
 <li id="two">Two</li>
 <li id="three">Three</li>
</ol>

>>> $('ol').find('[id^=t]') // retrieving id="t*"
[li#two, li#three]
>>> $('li').find('[id^=t]') // retrieving id="t*"
[ ]


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to