Touch with HTML5

Monkey Forums/Monkey Beginners/Touch with HTML5

navyRod(Posted 2014) [#1]
When using HTML5 target , is it possible to prevent the device (i.e tablet) from
responding to your touch input when you just want the app to respond to
the input. For Instance I don't want the device to interpret my double tap as an
action to enlarge the screen I just want the app to respond to it.

Hopefully I am asking this right .

Thanks


navyRod(Posted 2014) [#2]
When using HTML5 target , is it possible to prevent the device (i.e tablet) from
responding to your touch input when you just want the app to respond to
the input. For Instance I don't want the device to interpret my double tap as an
action to enlarge the screen I just want the app to respond to it.

Hopefully I am asking this right .

Thanks


nikoniko(Posted 2014) [#3]
IE supports "touch-action" CSS property, other browsers doesn't.
http://docs.webplatform.org/wiki/css/properties/touch-action

Look here to workaround http://stackoverflow.com/questions/8825144/detect-double-tap-on-ipad-or-iphone-screen-using-javascript


navyRod(Posted 2014) [#4]
thanks