i have an unordered list as a left nav with quite a few links in it. most of the list items have another unordered list as a submenu associated with them. however, a few of the links have no submenus. i want to disable the default click behavior on the links that have submenus so i can have the submenu animate open. but on the links with no submenu i need to have the link clickable. the javascript i have to do this is:
$(function(){
if($("#leftNav ul:first > li > a").siblings().size() > 0){
$("#leftNav ul:first > li > a").click(function(e){
e.preventDefault();
});
}
the problem is that this disables the default click behavior for all the links, not just the ones with siblings. the html for the left nav looks like this
<div id="leftNav">
<ul>
<li>
<a href="#">Link 1</a>
<ul>
<li><a href="#">Submenu Link 1</a></li>
<li><a href="#">Submenu Link 2</a></li>
<li><a href="#">Submenu Link 3</a></li>
</ul>
</li>
<li><a href="#">Link 2</a></li>
</ul>
</div>
so the click behavior would need to be removed on Link 1 because it has the <ul> as a sibling. Link 2 has no siblings so it should be left alone.