How do you convert text that you type into proper case as you type?
Example: “The Quick Brown Fox Jumps Over The Lazy Dog”
Edit-01: I want to make sure that it works On-Type. I found different methods to make this work On-Blur, but not On-Type.
How do you convert text that you type into proper case as you type?
Example: “The Quick Brown Fox Jumps Over The Lazy Dog”
Edit-01: I want to make sure that it works On-Type. I found different methods to make this work On-Blur, but not On-Type.
Try this
function toTitleCase(s) {
return s.replace(/\w\S*/g, function(t) {
return t.charAt(0).toUpperCase() + t.substr(1).toLowerCase();
});
}
<input onkeyup="this.value=toTitleCase(this.value)" />