I\'m writing a little jQuery extension that prevents a user from double clicking on a link.
$.fn.preventDoubleClick = function() { return this.click(func
Thanks to Adam's link, I was able to see the function I needed: stopImmediatePropagation().
I believe you're looking for event.stopPropagation
EDIT: turns out this was not the correct option for Nick's purposes. Please see his answer.