This article needs a technical review. How you can help.
A global event handler
for the pointerout
event.
SyntaxEdit
var outHandler = targetElement.onpointerout;
Return value
outHandler
- The pointerout event handler for element
targetElement
.
ExampleEdit
This example shows two ways to use onpointerout to set an element's pointerout event handler.
<html>
<script>
function outHandler(ev) {
// Process the pointerout event
}
function init() {
var el=document.getElementById("target1");
el.onpointerout = outHandler;
}
</script>
<body onload="init();">
<div id="target1"> Touch me ... </div>
<div id="target2" onpointerout="outHandler(event)"> Touch me ... </div>
</body>
</html>
SpecificationsEdit
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'onpointerout' in that specification. |
Editor's Draft | Non-stable version |
Pointer Events The definition of 'onpointerout' in that specification. |
Recommendation | Initial definition |
Browser compatibilityEdit
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | Not supported | (Yes) | 10 | Not supported | Not supported |