Full version: jsB@nk » Snippet » All Upper Case
URL: https://www.javascriptbank.com/all-upper-case.html
Converts a textbox entry to all capital letters as soon as they move to the next item in the form (or click the submit button).
Full version: jsB@nk » Snippet » All Upper Case
URL: https://www.javascriptbank.com/all-upper-case.html
<form name="capsform"><input type="text" name="caps" size=40 value="" onChange="javascript:this.value=this.value.toUpperCase();"><br><input type="button" value="Ok!"></form><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->