Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/06/2003, 14:18
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años, 2 meses
Puntos: 38
Hola ajn.

Prueba esto:

Código PHP:
<html>
 <
head>
  <
script language="JavaScript">
   function 
detectaPunto(){
    if (
event.keyCode == 190alert("Punto en el teclado izquierdo (190)");
    if (
event.keyCode == 110alert("Punto en el teclado derecho (110)");
   }
  
</script>
 </head>
 <body>
  Texto:<input id="oExample" type="text" onkeydown="detectaPunto()">
 </body>
</html> 
Saludos.