I am sure you have heard a lot about this, but I cannot find a good solution.
Is there a way to exchange listeners clickfor touchendlisteners?
Since my iPad web application automatically adjusts to the screen, I don’t think that our users (anyway, anyway) will need to double-click to zoom, and the 300 ms wait is really fierce.
Can i do something like
$(document).click(function(e){
e.preventDefault();
});
$(document).bind('touchend', function(e){
e.currentTarget.click();
});
Or something similar that will affect the entire page / application around the world? Ideally, I would run this code only if I found features touchEventon the page. (Although touch-screen monitors with a mouse look mix things up ...)
Thanks in advance!