I cannot seem to prevent TWO click events being fired when the user double-clicks an element. I've tried both jQuery (.click) and inline (onclick) handlers, and I have disabled the dblClick event using this:
$(window).ready(function() {
$("*").on("dblclick", function(e){
e.preventDefault();
e.stopPropagation();
});
});
I don't really want to add flag/timeouts everywhere as I have many click handlers and I need to disable double-clicks across the board generically...
JSFiddle here: https://jsfiddle.net/s0oteh84/26/