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
add a as follows:
a
....
or return false; from click handler for #clickable like:
return false;
#clickable
$("#clickable").click(function() { var url = $("#clickable a").attr("href"); window.location = url; return false; });