Hi, I want to convert lowercase letters the user types in a textfield to uppercase on keyrelease.
Right now, i am able to do it by adding the following code on for the textfiled.
onKeyUp="this.value = this.value.toUpperCase()"
Since, there are many textfields on my page it is pain to add on all the fileds one by one.
Is there a way that I can do it once and it applies for the entire page?
thanks,