Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

GlobalEventHandlers.onpointerout

Questo articolo richiede una revisione tecnica. Scopri come puoi essere d’aiuto.

I volontari di MDN non hanno ancora tradotto questo articolo in Italiano. Registrati per tradurlo tu.

A global event handler for the pointerout event.

Syntax

var outHandler = targetElement.onpointerout;

Return value

outHandler
The pointerout event handler for element targetElement.

Example

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>

Specifications

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 compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support Not supported (Yes) 10 Not supported Not supported
Feature Android Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support Not supported Not supported Not supported Not supported Not supported 10 Not supported Not supported

See also

Tag del documento e collaboratori

 Hanno collaborato alla realizzazione di questa pagina: rolfedh, Sebastianz, AFBarstow
 Ultima modifica di: rolfedh,