I need to write a jQuery that loop a ul childrens li in all sub levels , and find if any of those childrens has a class test do nothing but if none of them have that class , i want to give the main parent ul a certain class, this is a sample of the code,
<ul class="level1" id="navigation">
<li class="hasChildNodes"><a href="#"><span>Community</span></a>
<ul class="menuLevelContainer level2 hasChildNodes">
<li class=""><a href="#"><span>Blogs</span></a></li>
<li class=""><a href="#"><span>Discussions</span></a></li>
<li class=""><a href="#"><span>Photos</span></a></li>
<li class=""><a href="#"><span>Polls & Surveys</span></a></li>
<li class=""><a href="#><span>Suggestions</span></a></li>
</ul>
</li>
<li class=""><a href="/Events/Pages/default.aspx"><span>Events</span></a></li>
<li class="hasChildNodes"><a href="/News/Pages/default.aspx"><span>News</span></a>
<ul class="menuLevelContainer level2 hasChildNodes">
<li class=""><a href="#"><span>Annoucements</span></a></li>
<li class=""><a href="#"><span>Good Morning
Done</span></a></li></ul>
</li>
and i want to search all the childrens of the ul to see if it has a child witha that named class, and if not i want to give the ul the class test for example, but i want to give the specific ul the class , so shouldn;t i catch it first, this or something ??
