There's a link in the DIV
<div><a href="#">go</a></div>
Can I disable click event on the DIV, but still works on the link?
I use this for test, but seems not work:
$(this).click(function(event){
var _self_link=$('a',this);
if(event.target!=_self_link){dosomething}
});
Any solution with Jquery? Thanks.