Is there a way to disable double clicks on a page including links and buttons so that i can force the user to click only once.
I tried using the following code but it seems to give me an error in IE.
window.captureEvents(Event.DBLCLICK);
function handle(evnt)
{
return false;
}
window.onDblClick=handle
I tried using the following code but it seems to give me an error in IE.
window.captureEvents(Event.DBLCLICK);
function handle(evnt)
{
return false;
}
window.onDblClick=handle