IPad Safari Events

What are all touch events provided or detected by the Mobile Safari browser on the iPad?

Basically what does webkit provide?

I kind of looked for a native application (IOS SDK) equivalent to touching Began, touchhesMoved, etc. in Safari ..

+7
source share
3 answers

This project does an excellent job of this; I used it myself.

http://cubiq.org/iscroll-4

http://cubiq.org/dropbox/iscroll4/examples/simple/

Take a look at iDevice.

+2
source

Both iOS and Android browsers support touchStart, touchEnd, and touchMove: http://backtothecode.blogspot.com/2009/10/javascript-touch-and-gesture-events.html

Multi-touch event detection is probably possible on iOS: http://www.html5rocks.com/mobile/touch.html

And if you prefer jQuery, there is jQuery mobile: http://jquerymobile.com/demos/1.0a4.1/#docs/api/events.html

+5
source

All Articles