Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/03/2008, 10:59
Avatar de ZeroLino
ZeroLino
 
Fecha de Ingreso: abril-2007
Mensajes: 91
Antigüedad: 17 años, 8 meses
Puntos: 2
Re: funcion que cambie el texto a mayusculas

aki esta lo que hice.. espero que a alguien le sea util

<HTML>
<HEAD>

<script language="javascript">

function convertirTexto () {
document.all.texto.value=document.all.texto.value. toUpperCase();
}


</script>

</HEAD>

<BODY>


<P>
<input name="texto" type="text" onblur="convertirTexto()" >

</P>

</BODY>
</HTML>