How can I select the link elements of only the parent from a list like this?
Once you have the initial ul, you can use the children() method, which will only consider the immediate children of the element. As @activa points out, one way to easily select the root element is to give it a class or an id. The following assumes you have a root ul with id root.
$('ul#root').children('li');