Showing posts with label html. Show all posts
Showing posts with label html. Show all posts

Sunday, June 30, 2013

how to change all to UPPERCASE in an input box

for a text box, here's the code.

<input type="text" onblur="this.value=this.value.toUpperCase()" name="" placeholder="all of this will be uppercase" />