I have searched over the web can can't find anything to help me. I want to make the first letter of each word upper case within a variable.
So far i have tried:
toUpperCase();
And had no luck, as it uppercases all letters.
|
I have searched over the web can can't find anything to help me. I want to make the first letter of each word upper case within a variable. So far i have tried:
And had no luck, as it uppercases all letters. |
|||||
|
|
||||
|
http://phpjs.org/functions/ucwords:569 has a good example
(omitted function comment from source for brevity. please see linked source for details) EDIT: Please note that this function uppercases the first letter of each word (as your question asks) and not just the first letter of a string (as your question title asks) |
|||
|
|
|
just wanted to add a pure javascript solution ( no JQuery )
|
|||||
|
|
Much easier way:
I have to give @Dementic some credit for leading me down the right path. Far simpler than whatever you guys are proposing. |
|||
|
|
||||
|
|
|
I imagine you could use substring() and toUpperCase() to pull out the first character, uppercase it, and then replace the first character of your string with the result.
I think that should work for you. Another thing to consider is that if this data is being displayed, you can add a class to its container that has the CSS property "text-transform: capitalize". |
|||
|
|
|
Ever heard of For a starter :
Thanks to @FelixKling for the tip:
|
|||||||||||||
|
|
Based completely on @Dementric 's answer, this solution is ready to call with a simple jQuery method, 'ucwords'... Thanks to everyone who contributed here!!!
}); EXAMPLE: This can be called using the method
|
|||
|
|
|
The string to lower before Capitalizing the first letter. (Both use Jquery syntax)
In addition a function to Capitalise the WHOLE string:
Syntax to use on a textbox's click event:
|
|||
|
|
|
To do this, you don't really even need Javascript if you're going to use
Why not do this as css like
or do it as a class and apply that class to wherever you need it
|
|||||
|