I have a page with some links inside a div, and some outside this div.
<div id="navigation">
<ul>
<li>
<a href="/Home/Index">Home</a></li>
<li>
<a href="/Home/contactus">Contact Us</a></li>
</ul>
</div>
<a href="/User/SignIn">Sign In</a>......
I need to disable the click event for all links except inside the navigationdiv.
How to do this in jquery with:
$("a:not([id])").live('click', function(e) {
e.preventDefault;
return false;
});
source
share