1
116
In any give field, how can I force upper case, or lower for that matter if
needed.
Thanks
David
needed.
Thanks
David
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Jon Spivey said:For a form you're probably better using javascript to force upper case -
this way the form field contents will display to your user and be sent to
your server in upper case.
<input type="text" onkeyup="this.value=this.value.toUpperCase();"
name="whatever" />
or for lower case
<input type="text" onkeyup="this.value=this.value.toLowerCase();"
name="whatever" />
.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.