<div id="container1">
<span>...</span>
</div>
<div id="container2">
<span>...</span>
</div>
Say if I have get the jQuery object $('container1'),how to find the <span> in it?
|
|
|
Just select the descendant span:
Note that this will select any span inside #container1, even if is not a direct descendant. If you want to select only direct descendants, use the parent > child selector:
If you have only an object reference you could:
Or
|
|||
|
|
|
I know you have accepted an answer, I'd just like to add another way of doing this:
I haven't tested performance on these yet, so I don't know which is better. Just thought I'd let you know you have more options (: |
|||
|
|
|
There are a lot of ways to do that. According to your comment at CMS answer:
and
on top of CMS's other suggestions. |
|||
|
|
|
Use find( expr ). Example:
|
|||
|
|