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

Prueba esto:
Código PHP:
<html>
<
head>
<
script>
function 
validar(e) {
    
tecla=(document.all) ? e.keyCode e.which;
    
document.getElementById('pru').value=tecla-32;
    if (
tecla>96 && tecla<123
        
e.keyCode=tecla-32;
        
}
</script>
</head>

<body>
<input type="text" onkeypress="validar(event)"/>
</body>
</html> 
Lo que no he conseguido es que funcione en Netscape. Si alguien sabre hacerlo me gustaría saber como.

Saludos,

Última edición por JavierB; 09/01/2004 a las 12:45