I want to convert lowercase chars to uppercase as the user types using javascript. Any suggestions are welcome.
I have tried the following:
$(\"#text
While the CSS + Server Side UCase approach is probably "best", here is a Client Side jQuery solution I use when the need arises:
$("#id").keyup(function() { $(this).val($(this).val().replace(/([a-z])/,function(s){return s.toUpperCase()})); });
She's not pretty, but she'll get the job done!