Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know how to disable touch gestures using JavaScript while running content in the browser on Android?

For example, I want to disable the pinch to zoom gesture via JavaScript.

share|improve this question
1  
I would pay for an iPhone browser that ignores the user-scalable=no meta tag. I hate it when sites won't let me zoom. – Stephen P Jan 25 '11 at 1:34
I am interested in this issue too. I want to disable the double-click zoom when clicking a specific image. The user has to click this image as fast as he can for 10 seconds which causes a lot of unwanted zooms on android browsers. Unfortunately listening to the touchend event and using prevenDefault() and stopPropagation() on the event does not solve the problem. – jiriki Jan 25 '12 at 11:30

1 Answer

up vote 1 down vote accepted

That can be done with the meta tag, viewport.

<meta name="viewport" content="width=device-width, user-scalable=no" />

I'm not sure if it's possible with JavaScript

Edit - added closing quote

share|improve this answer
Thanks. That fixed it. (You are missing a closing quote in the content attribute). – mikechambers Jan 24 '11 at 16:40
One issue with this on iOS and Android, is that it will cause line drawing in the Canvas element to be Aliased (and generally look crappy). – mikechambers Jan 24 '11 at 19:23
This wont work on HTC devices running Android as they ignore the meta viewport tag (annoyingly) – Adi Oct 19 '11 at 13:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.