How do I make all of the characters of a text box lowercase as the user types them into a text field in Javascript?
Two ways:
Using CSS:
.lower { text-transform: lowercase; }
Using JS: