I want to convert lowercase chars to uppercase as the user types using javascript. Any suggestions are welcome.
I have tried the following:
$(\"#text
$("#id").keyup(function() { $(this).val($(this).val().replace(/([a-z])/,function(){ return $("#id").toUpperCase(); })); });
small correction in the above script this will work perfectly now.