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.

Element.ongotpointercapture

ongotpointercapture es una propiedad EventHandler de la interfaz Element  que devuelve el controlador de eventos (función) para el evento tipo gotpointercapture.

Síntasix

var gotCaptureHandler = target.ongotpointercpature;

Valor de Retorno

gotCaptureHandler
El controlador de eventos  gotpointercapture para el elemento target.

Ejemplo

<html>
<script>
function overHandler(ev) {
 // Determine the target event's gotpointercapture handler
 var gotCaptureHandler = ev.target.ongotpointercapture;
}
function init() {
 var el=document.getElementById("target");
 el.onpointerover = overHandler;
}
</script>
<body onload="init();">
<div id="target"> Touch me ... </div>
</body>
</html>

Especificaciones

Especificación Estado Comentario
Pointer Events – Level 2
The definition of 'ongotpointercapture' in that specification.
Editor's Draft Versión no estable.
Pointer Events
The definition of 'ongotpointercapture' in that specification.
Recommendation Definición inicial.

Compatibilidad en los Navegadores

Función Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Soporte Básico No support (Yes) [1] 10 No support No support
Función Android Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Soporte Básico No support No support No support No support No support 10 No support No support

[1] Implementación retirada. Ver bug 1166347.

Ver también

Etiquetas y colaboradores del documento

 Colaboradores en esta página: SoftwareRVG
 Última actualización por: SoftwareRVG,