Controlling text entry form field

Haven't been on for so long I had to recreate myself! I am working on a software simulation. In the program I am simulating when the text is entered it defaults to all uppercase, JOHNSON. Is there a way I can set it up so the same thing will happen to my users when they enter the text?

Discussion (1)

Add CSS rule "text-transform:uppercase;" to the text input field. In Lectora, simply add an external HTML object, set it to Meta Tags, write the following:



input[type=text] {

text-transform:uppercase;

}



Live demo: http://jsfiddle.net/q1qz79ay/

Discussions have been disabled for this post