Being a complete non programmer, i thought it would be a good idea to help others like me who have no programming knowledge but want to develop web based applications. Additionally i wanted to be able to access all these for my own repetitive use.
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" />
No comments:
Post a Comment