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.ontouchstart

Este articulo necesita una revisión técnica. Cómo puedes ayudar.

Un global event handler para el evento touchstart.

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.

Nota: Este atributo no ha sido estandarizado formalmente. Está especificado en la especificación Touch Events – Level 2 Editor's Draft y no en Touch Events Recommendation. Este atributo no está totalmente implementado.

Sintaxis

var startHandler = cualquierElemento.ontouchstart;

Valor devuelto

startHandler
El manejador del evento touchstart para el elemento cualquierElemento.

Ejemplo

Este ejemplo muestra dos formas de utilizar ontouchstart para establecer un manejador de evento touchstart.

<html>
<script>
function startTouch(ev) {
 // Procesar el evento
}
function init() {
 var el=document.getElementById("target1");
 el.ontouchstart = startTouch;
}
</script>
<body onload="init();">
<div id="target1"> Tócame ... </div>
<div id="target2" ontouchstart="startTouch(event)"> Tócame ... </div>
</body>
</html>

Especificaciones

Especificación Estado Comentario
Touch Events – Level 2 Editor's Draft Versión no estable.

Compatibilidad en navegadores

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support          
Feature Android Android Webview Chrome para Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support                

Ver también

Etiquetas y colaboradores del documento

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