SyntaxFix
Write A Post
Hire A Developer
Questions
Let say your html code is :
<input type="text" id="txtMyText" />
then the jquery should be :
$('#txtMyText').keyup(function() { this.value = this.value.toUpperCase(); });