Hello.
I have a LI element to which I have added a "Toggle" event handler
$("#myUL li").toggle {}
Inside the LI there is an anchor (link) element:
<ul id ="myUL">
<li>Click anywhere to initiate toggle handler <a href="/">(Except here)</a></li>
</ul>
How can I tell jQuery not to initiate the Toggle event if the user clicks on the link which is inside the UL, but to do initiate the event if the user clicks anywhere inside the UL beside that link?
Thank
Joel