This is a great little function that I whipped up and use to capitalize every word in a string. I can’t tell you how many times I’ve had to use this. Hope you find it useful as I have!
JavaScript
1 2 3 4 5 6 7 8 9 |
<script> function wordToUpper(strSentence) { return strSentence.toLowerCase().replace(/\b[a-z]/g, convertToUpper); function convertToUpper() { return arguments[0].toUpperCase(); } } </script> |