Is there a way to make text inside of input text box to title case each time user pressing their keyboard using a jQuery? example:
johny english
to
Johny English
Here's the input text box
<input type="text" id="fullname" name="fullname" /> You can use pure CSS by applying text-transform property:
The text-transform CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
#fullname { text-transform: capitalize; } Here you are with css text-transform : capitalize for the purpose.