verhindern, dass Sie zu einer Funktion html klicken

$("#clickable a").click(function(e) {
   // Do something
   e.stopPropagation();
});
Jittery Jay