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.

I simply can't find anything in the docs or anywhere on how to detect a simple pinch-zoom Gesture on a touchdevice with jQuery Mobile? I would also considering using another library or anything. I just want to detect if the user is trying to scale the content on the website.

So I don't need to handle a pinch gesture on an element of the site but on the site itself. I just want to listen for a pinch gesture on my website.

Any idea how to do that?

thank you

share|improve this question
Here is an also helpful answer: stackoverflow.com/questions/11183174/… – jayarjo Oct 9 '12 at 12:28

1 Answer

up vote 2 down vote accepted

The vendor support varies and iOS the only platform whereto use multi-touch Javascript events reliably.

http://developer.apple.com/library/ios/#DOCUMENTATION/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html#//apple_ref/doc/uid/TP40006511-SW8

From Apple's own documentation.

share|improve this answer
Do we have some touch events for jQuery mobile which run on Android as well?? – Mak Oct 19 '12 at 9:35
1  
The vendor support varies and iOS the only platform whereto use multi-touch Javascript events reliably. – Mikko Ohtamaa Oct 19 '12 at 22:25

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.