Capitalize input text in Javascript

1.6k Views Asked by At

In a form, I have two buttons to transform text to uppercase and lowercase. I am using this function to transform input text to upper case:

document.xyz.textinput.value=document.xyz.textinput.value.toUpperCase()

Now, I want to add a new button to capitalize each word. Is it possible to achieve this with the following code?

document.xyz.textinput.value=document.xyz.textinput.value.capitalize()

Thanks

3

There are 3 best solutions below

2
On BEST ANSWER

Try This:

document.xyz.textinput.value = document.xyz.textinput.charAt(0).toUpperCase() + document.xyz.textinput.slice(1);

If you want a capitalize functions, See here.

0
On

CSS has some text-transform properties too: https://developer.mozilla.org/en/CSS/text-transform

If that isnt an option, you can simply split your string by each whitespace and capitalize that word.

3
On
String.prototype.capitalize = function (strSentence) {
        return strSentence.toLowerCase().replace(/\b[a-z]/g, convertToUpper);

        function convertToUpper() {
            return arguments[0].toUpperCase();
        }
}

Use this:

"hello world".capitalize();  // "Hello World"