How to insert the to uppercase command in html forms. In html forms when we enter the username it has to change in caps. Your answer will be appreciated.
add
onblur="javascript:this.value
=this.value.toUpperCase();"
make sure its all on one line just yahoo cuts it off
into the html form e.g.
if your form is
<input type="text" name="username" />
Change it to
<input type="text" name="username" onblur="javascript:this.value=this.value.toUpperCase();" />