The ongotpointercapture
EventHandler
property of the GlobalEventHandlers
interface returns the event handler (function) for the gotpointercapture
event type.
window.ongotpointercapture = functionReference
<html> <script> function overHandler(ev) { // Determine the target event's gotpointercapture handler var gotCaptureHandler = ev.target.ongotpointercapture; } function init() { var el=document.getElementById("target"); el.ongotpointercapture = overHandler; } </script> <body onload="init();"> <div id="target"> Touch me ... </div> </body> </html>
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'onlostpointercapture' in that specification. | Editor's Draft |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 57.0 | ? | ? | ? | 44 | ? |
Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|---|
Basic support | No support | 57.0 | ? | ? | ? | ? | 44 | ? | 57.0 |
© 2005–2017 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/ongotpointercapture