Thursday, January 3, 2013

How to disable double click event by jQuery?

$("*").dblclick(function(event){
event.preventDefault();
});