15/05/2007, 09:03
|
| | | Fecha de Ingreso: mayo-2007 Ubicación: por ahí intentado ayudar
Mensajes: 823
Antigüedad: 17 años, 8 meses Puntos: 6 | |
Re: Convertir a mayuscula la primer letra con un script JavierB asi mando llamar el script pero no funciona me sigue dejando la primer letra en minuscula.
<INPUT type="text" name="valor" value=" " SIZE="8" MAXLENGTH="6" ONKEYPRESS="return vNom(this)" />
Esta es la función:
function vNom(solicitar){
te = String.fromCharCode(tecla);
txt = solicitar.value;
if (txt.length==0 || txt.substr(txt.length-1,1)==' ') {
solicitar.value = txt+te.toUpperCase();
return false;
}
return true;
} |