Here an example my form http://jsfiddle.net/GT7fY/

How to convert all text to uppercase while user writing on the field?

link|improve this question

toUpperCase() JS method – Roko C. Buljan Feb 22 at 16:55
1  
Thank you guys. +1 for implementation & examples. – Unknown Error Feb 22 at 17:07
feedback

6 Answers

up vote 5 down vote accepted

You could use keyup() and toUpperCase()

$('input').keyup(function(){
   this.value = this.value.toUpperCase(); 
});

fiddle here http://jsfiddle.net/GT7fY/2/

link|improve this answer
feedback

I would just convert it to uppercase in the submit event.

$("#verify input").val(function(i,val){
  return val.toUpperCase();
});

The uppercase requirement could simply be kept hidden from the user.

link|improve this answer
I agree. If it's not important for the user to SEE that it's uppercase, just don't bother and carry on. Could even do the conversion on the back end instead. – Greg Pettit Feb 22 at 17:03
feedback

Try this:

style input
input{text-transform:uppercase;}​

and onBlur make uppercase
<input onBlur="$(this).val(this.value.toUpperCase());">

That's it :)

link|improve this answer
+1 this is the prettiest way to do it :) – Roko C. Buljan Feb 22 at 17:00
But not what was asked, it'd have to be something like onkeyup="this.value = this.value.toUpperCase();" in pure JS to make it most efficient.... – Likwid_T Feb 22 at 17:06
@Likwid_T any way you should style it. – Pedro Soares Feb 22 at 17:17
feedback
$('form#verify').on('keyup', 'input', function(event) {
    $(this).val($(this).val().toUpperCase());
});

link|improve this answer
feedback

Paste This at the bottom:

$(document).ready(function(e){
    $('input[type="text"]').on('keyup', function(){
    $(this).val(this.value.toUpperCase());
    });
});
link|improve this answer
feedback
$(":input").keyup(function() {
$(this).val($(this).val().toUpperCase());
});

all yours.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.