I want to make everything I write in a textfield to be capital letters. As I write, not after losing focus.
How do I do this using jQuery?
$('input[type=text]').keyup(function() { $(this).val($(this).val().toUpperCase()); });