I am trying to prevent multiple clicks on links and items, which is causing problems.
I am using jQuery to bind click events to buttons (jQuery UI) and image links (
did you check out preventDefault?
$("a").click(function(e) { e.preventDefault(); }
you could also try stopImmediatePropagation() or stopPropagation()
stopImmediatePropagation()
stopPropagation()
You could also look into the one() event.
Attach a handler to an event for the elements. The handler is executed at most once per element.