I am using onkeyup=\"this.value=this.value.toUpperCase();\"to change input text value in uppercase. This is working but my need is to change a single letter in
onkeyup=\"this.value=this.value.toUpperCase();\"
How about CSS:
input.upper { text-transform: uppercase; }
Remark: This will still send the value to the server as typed by the user and not uppercased.