Click here to Skip to main content
15,902,189 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi....friends i create a register form and in which i need to fill all form all text box is enter in title case so how i can do this with easy way???

may i do this using style sheet or any other easy way to this task???


thank you..
Posted

jQuery can do what you want. I would suggest looking at http://jquerybyexample.blogspot.com/2011/12/jquery-plugin-for-uppercase-lowercase.html[^]
 
Share this answer
 
Comments
fjdiewornncalwe 29-Oct-12 16:12pm    
+5. The logical way.
Try this in javascript

JavaScript
onfocusout="if(this.value!=null){this.value=this.value.toUpperCase();}"


Thanks
 
Share this answer
 
Comments
bhavesh002 30-Oct-12 13:37pm    
tihs give Result in Uppercaase but i need Titele case "My Name Is John" but To Uppercase Give Result "MY NAME IS JOHN"

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900