I want to convert lowercase chars to uppercase as the user types using javascript. Any suggestions are welcome.
I have tried the following:
$(\"#text
$(document).ready(function () { $("#textbox").keyup( function (e) { var str = $(this).val(); $("#textbox").val(str.toUpperCase()); }); });