Thursday, September 8, 2011

Textbox All Upper Case (Auto Capitalization)

I was looking for a script that can change text input into textboxes to change to capital letters automatically and I found this wonderful short script in http://javascript.internet.com/forms/all-upper-case.html

Just add the code below in your textbox code
onChange="javascript:this.value=this.value.toUpperCase();

No comments: