Hi,
I was wondering how I could use JQuery to select the child of a parent?
I have the following.
$("#navigation a.subpage").click(function () {
$("#navigation ul ul")...
The HTML looks like this.
<li>
<a class="subpage"...</a>
<ul style="hidden">...</ul>
</li>
I need to somehow select the parents of the link. That would get me the relevant li. Then I need to select the ul and toggle it. How do I do this?