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