Thank you for your reply, however your proposed solution is not
working.
According to firebug, the html I have is
-------------
<ul class="ltr">
<li id="iop-data" class="last open" path="iop-data" rel="root">
<a class="checked" style="" href="#">arm-iop</a>
<ul>
<li id="1998" class="closed" path="iop-data/1998">
<a class="checked" style="" href="#">1998</a>
</li>
<li id="1999" class="closed" path="iop-data/1999">
<a class="checked" style="" href="#">1999</a>
</li>
<li id="2000" class="closed last" path="iop-data/2000">
<a class="checked" style="" href="#">2000</a>
</li>
</ul>
</li>
</ul>
--------------------------------------------
Now, each <a> object has the class 'checked' but it does not have an
id attribute. The parent <li> tag has an id attribute, as well as
"path" which is what I'm really interested in.
Your query will give me a jquery list of all the <a>'s, but what I'm
really after is their parents, the <li> tag.
Is there a way to do this with Jquery's parent function?