Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/06/2006, 05:35
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola Wdeah

Prueba este ejemplo:
Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
pulsar(e) {
  
tecla = (document.all) ? e.keyCode e.which;
  if (
tecla==65// tecla A
    
alert('Gracias por pulsarme');
}
</script>
</head>
<body onkeyup="pulsar(event)">
</body>
</html> 
Saludos,