Is your ondblClick function something like:
function myHandler(event) {
//Your code here
return false; //Stop the propagation
}
That should trigger event.preventDefault() and event.stopPropagation(); The return of an event handler specifies whether the default action should also happen.
Topic:
App & System Services
SubTopic:
Core OS
Tags: