Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/11/2003, 11:36
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 3 meses
Puntos: 772
Hola, jorgenc. Bienvenido al Foro.

Prueba esto:
Código PHP:
<html>
<
head>
<
script>
function 
minus(e) {
    
tecla=(document.all)?e.keyCode:e.which;
    if(
tecla>64 && tecla <91)
    if(
document.all)
        
e.keyCode=tecla+32;
    else
        
e.which=tecla+32;
}
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<input type="text" onKeyPress="return minus(event)">
</body>
</html> 
Espero que te funcione. Saludos,