[jQuery] avoid event bubbling to ancestors but still activate the default action?

[jQuery] avoid event bubbling to ancestors but still activate the default action?


I have an A in a DIV:
<div id="divid"><a href="somewhere" id="aid">asdf</a></div>
and bind the click event of the div:
$("#divid").click(function() { ... })
Now I want the click of A execute the default action, i.e. go to
another page, without execute the div event function. How to do
this? "return false" doesn't work.