[jQuery] Find all <li> tags without an <a> tag inside

[jQuery] Find all <li> tags without an <a> tag inside


I am stumped. I have nested unordered lists. I want to attach a click
event to all the list items that do not directly contain an <a> tag.
Attach a click event to:
<li>List item without link</li>
Do not attach click event to:
<li><a href="">Link 1</a></li>
I have this code which attaches the event to both types of tags:
$("#LHNav").find("li").bind("click", function(){
//do something
});
Ideas anyone?