The onlostpointercapture
EventHandler
property of the GlobalEventHandlers
interface returns the event handler (function) for the lostpointercapture
event type.
Syntax
window.onlostpointercapture = functionReference
Example
<html> <script> function overHandler(ev) { // Determine the target event's lostpointercapture handler var lostCaptureHandler = ev.target.onlostpointercapture; } function init() { var el=document.getElementById("target"); el.onlostpointercapture = overHandler; } </script> <body onload="init();"> <div id="target"> Touch me ... </div> </body> </html>
Specifications
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'onlostpointercapture' in that specification. |
Working Draft |
Browser compatibility
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 |
See also
Document Tags and Contributors
Tags:
Contributors to this page:
bunnybooboo,
jpmedley
Last updated by:
bunnybooboo,