SyntaxFix
Write A Post
Hire A Developer
Questions
$(document).ready(function() { $('#yourtext').keyup(function() { $(this).val($(this).val().toUpperCase()); }); }); <textarea id="yourtext" rows="5" cols="20"></textarea>