A global event handler
for the pointercancel
event.
var cancelHandler = targetElement.onpointercancel;
cancelHandler
targetElement
.This example shows two ways to use onpointercancel to set an element's pointercancel event handler.
<html> <script> function cancelHandler(ev) { // Process the pointercancel event } function init() { var el=document.getElementById("target1"); el.onpointercancel = cancelHandler; } </script> <body onload="init();"> <div id="target1"> Touch me ... </div> <div id="target2" onpointercancel="cancelHandler(event)"> Touch me ... </div> </body> </html>
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'onpointercancel' in that specification. | Working Draft | Non-stable version |
Pointer Events The definition of 'onpointercancel' in that specification. | Recommendation | Initial definition |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 35 | Yes | 59
|
11
|
? | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 37 | 35 | Yes | 29
|
? | No | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointercancel