Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/07/2006, 09:49
Avatar de Cap.Buscapina
Cap.Buscapina
 
Fecha de Ingreso: octubre-2004
Ubicación: Argentina
Mensajes: 836
Antigüedad: 20 años, 3 meses
Puntos: 4
Cita:
<html>
<head>
<script>
function n(i){
nya=i.value.split(" ");
for(x=0;x<nya.length;x++){
nya[x]=nya[x].slice(0,1).toUpperCase()+nya[x].slice(1).toLowerCase();
i.value=nya.join(" ");
}
}
</script></head>
<body>
nombre:<input type="text" name="nombre" onkeyup="n(this)">
</body>
</html>
espero te sea útil.

saludos
__________________
by Capitán Buscapina
.