Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/09/2013, 02:00
thorstorm
 
Fecha de Ingreso: septiembre-2013
Mensajes: 12
Antigüedad: 11 años, 2 meses
Puntos: 1
Respuesta: Convertir el texto de todos los inputs y textarea a mayusculas

Con jQuery es fácil:
Código Javascript:
Ver original
  1. $(':input').on('blur', function(this.value){
  2.    this.value.toUppercase();
  3. }
  4. $(':input').on('focus', function(this.value){
  5.    this.value.toUppercase();
  6. }