How do I make all of the characters of a text box lowercase as the user types them into a text field in Javascript?
$('input').keyup(function(){ this.value = this.value.toLowerCase(); });