Solved
User input - Java toUpper
How can I convert user input, in a text entry field, directly to uppercase using Java? I've fumbled around with it, but can't make it work.
Best answer by TomG
```
jQuery("#"+this.questionId+" .InputText").on("input", function() {
this.value = this.value.toUpperCase();
});
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.


