jQuery toUpperCase/toLowerCase Example

Sam Deering
Share

JavaScript code snippet to convert text to UpperCase and to LowerCase. Simple Example provided for your amusements – shows case changes for form value form inputs.

See: The jQuery titleCaps Function

jQuery('form').submit(function() {
    jQuery('input#value').val(function(i, val) {
          return val.toUpperCase();
           return val.toLowerCase();
    });
 });