I have the following structure :
<ul>
<li><a>link</a>
<ul>
<li>
<a>link</a>
<ul>
<li><a>link</a></li>
<li><a>link</a></li>
<li><a>link</a></li>
</ul>
</li>
<li>
<a>link</a>
<ul>
<li><a>link</a></li>
<li><a>link</a></li>
<li><a>link</a></li>
</ul>
</li>
</ul>
</li>
<li>
<div>content
<ul>
<li><a>link</a></li>
<li><a>link</a></li>
<li><a>link</a></li>
</ul>
</div>
</li>
<li><a>link</a></li>
<li><a>link</a></li>
<li><a>link</a></li>
</ul>
I wanna select only the anchors that fall directly under the <li> tags ( children) but not the ones that fall under other tags (grandchildren)
if i do
$('ul li> a')
I will also get the the ul which is nested under the div. is there a "clean" way to do this? thank you
ps: I would like to have a generic selector ( this is for a menu pluggin so I want it to ignore all the anchor tags that don't fall directly in the flow of a menu)
ulto distinguish it from anyul? Then$('#root > li > a')won't grab that deeperul > li > a. Or do you also want the other deepul > li > as to be captured, just not the one under thediv? – Wiseguy May 19 '11 at 20:04aelements at any depth so long as their ancestors are onlyulorli? So,ul > li > awould match, and aul > li > ul > li > ul > li > awould match too? – Wiseguy May 19 '11 at 20:11