Search completed in 1.06 seconds.
10 results for "ontouchcancel":
GlobalEventHandlers.ontouchcancel - Web APIs
WebAPIGlobalEventHandlersontouchcancel
the ontouchcancel property of the globaleventhandlers mixin is an eventhandler that processes touchcancel events.
... syntax var cancelhandler = someelement.ontouchcancel; return value cancelhandler the touchcancel event handler for element someelement.
... example this example shows two ways to use ontouchcancel to set an element's touchcancel event handler.
...And 2 more matches
Document - Web APIs
WebAPIDocument
globaleventhandlers.ontouchcancel is an eventhandler representing the code to be called when the touchcancel event is raised.
... also available via the ontouchcancel property.
Document: touchcancel event - Web APIs
WebAPIDocumenttouchcancel event
bubbles yes cancelable no interface touchevent event handler property ontouchcancel examples code samples for those events are available on the dedicated page: touch events.
Element: touchcancel event - Web APIs
WebAPIElementtouchcancel event
bubbles yes cancelable no interface touchevent event handler property ontouchcancel examples code samples for those events are available on the dedicated page: touch events.
Element - Web APIs
WebAPIElement
also available via the ontouchcancel property.
GlobalEventHandlers - Web APIs
WebAPIGlobalEventHandlers
globaleventhandlers.ontouchcancel is an eventhandler representing the code to be called when the touchcancel event is raised.
HTMLElement - Web APIs
WebAPIHTMLElement
toucheventhandlers.ontouchcancel returns the event handling code for the touchcancel event.
Index - Web APIs
WebAPIIndex
1543 globaleventhandlers.ontouchcancel api, event handler, experimental, globaleventhandlers, html dom, property, reference the ontouchcancel property of the globaleventhandlers mixin is an eventhandler that processes touchcancel events.
TouchEvent - Web APIs
WebAPITouchEvent
globaleventhandlers.ontouchcancel a global event handler for the touchcancel event.
Multi-touch interaction - Web APIs
WebAPITouch eventsMulti-touch interaction
function set_handlers(name) { // install event handlers for the given element var el=document.getelementbyid(name); el.ontouchstart = start_handler; el.ontouchmove = move_handler; // use same handler for touchcancel and touchend el.ontouchcancel = end_handler; el.ontouchend = end_handler; } function init() { set_handlers("target1"); set_handlers("target2"); set_handlers("target3"); set_handlers("target4"); } move/pinch/zoom handler this function provides very basic support for 2-touch horizontal move/pinch/zoom handling.