Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/12/2006, 09:41
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Re: Mayusculas y Minusculas (Imposible???)

Hola ikaroraul

En primer lugar, un poco más de paciencia, esto no es un chat. En segundo lugar, prueba este código:
Código:
<html>
<head>
<script>
function cambiar(obj) {
  txt = obj.value;
  txt = txt.substr(0,1).toUpperCase()+txt.substr(1,txt.length).toLowerCase();
  obj.value = txt;
}
</script>
</head>
<body>
<form name="form">
<input type="text" name="box" size="20" onblur="cambiar(this)">
</form>
</body>
</html>
Saludos,