Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/12/2005, 10:28
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola bhonox

Prueba con este código:
Código PHP:
<html>
<
head>
<
script>
function 
pulsar(e) {
  
tecla=document.all e.keyCode e.which;
  
alert(tecla);
}
</script>
</head>
<body>
<input type="text" onkeyup="pulsar(event)" />
</body>
</html> 
Saludos,