Ver Mensaje Individual
  #26 (permalink)  
Antiguo 03/11/2010, 08:24
sysmadryn
 
Fecha de Ingreso: septiembre-2004
Ubicación: La Plata Argentina
Mensajes: 128
Antigüedad: 19 años, 7 meses
Puntos: 9
Respuesta: Pasar digito de un campo text a otro

El problema del IE6 parece ser con el onkeyup porque con el onkeypress anda bien.

<html>
<body>
<input type="text" onkeypress="alert('onkeypress fired');" onkeyup="alert('onkeyup fired');"/>
</body>
</html>