I have about 20 pages of forms and I need all the inputs on every page to be converted to uppercase. I'm wondering if it would be possible to build a JavaScript function that I could just copy/paste onto every page without having to do it individually on each input on every page.
Maybe using getElementsByTagName() and addEventLister() and toUpperCase().
Would something like this work?
PS. using CSS only works until the browser send the information back to the server, so that's out.