In order to make touch screen friendly website IE supports
canvas {
-ms-touch-action: double-tap-zoom;
}
Is there any equivalent to be used with other browsers like chrome, Firefox, opera and safari?
In order to make touch screen friendly website IE supports
canvas {
-ms-touch-action: double-tap-zoom;
}
Is there any equivalent to be used with other browsers like chrome, Firefox, opera and safari?
Chrome is shipping support for touch-action in Chrome 35: http://blog.chromium.org/2014/04/chrome-35-beta-more-developer-control.html
There is no other way of implementing this in other browsers, see Krazers answer to this.