View Full Version : Make All Lowercase
Jasonb61
08-26-2002, 11:11 PM
This is probably pretty simple for some of you, but how do I maket he text in a inputbox all lowercase?
ConfusedOfLife
08-26-2002, 11:16 PM
<input value="" onchange="this.value = this.value.toLowerCase();">
onkeydown="this.value = this.value.toLowerCase()"
would probably do it.
whammy
08-26-2002, 11:35 PM
I'd use onblur probably though, since onkeydown doesn't seem to work in NS 4.x or Opera
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.