I\'m currently using jQuery to make a div clickable and in this div I also have anchors. The problem I\'m running into is that when I click on an anchor both click events ar
Using return false; or e.stopPropogation(); will not allow further code to execute. It will stop flow at this point itself.
return false;
e.stopPropogation();