My goal is to use the jQuery event .keyup() to convert inputted lowercase chars to uppercase.
How can I achieve this?
Let say your html code is :
then the jquery should be :
$('#txtMyText').keyup(function() { this.value = this.value.toUpperCase(); });