Element.onlostpointercapture

onlostpointercapture is an EventHandler property of the Element interface that returns the event handler (function) for the lostpointercapture event type.

Syntax

var lostCaptureHandler = target.onlostpointercpature;

Return value

lostCaptureHandler
The lostpointercapture event handler for element target.

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.onpointerover = 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.
Editor's Draft Non-stable version.
Pointer Events
The definition of 'onlostpointercapture' in that specification.
Recommendation Initial definition.

Browser compatibility

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support No support (Yes) (Yes) [1] 10 No support No support

[1] Implementation withdrawn. See bug 1166347.

See also

Document Tags and Contributors

 Contributors to this page: erikadoyle, rolfedh, AFBarstow
 Last updated by: erikadoyle,