The ongotpointercapture
EventHandler
property of the GlobalEventHandlers
interface returns the event handler (function) for the gotpointercapture
event type.
window.ongotpointercapture = functionReference
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; }
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'onlostpointercapture' in that specification. | Working Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 57 | ? | Yes | ? | 44 | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 57 | 57 | ? | Yes | 44 | ? | ? |
© 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/ongotpointercapture