I want to add to my library a function that will capitalize first letter and the remaining letters in lowercase.
I want to add to my library a function that will capitalize first letter and the remaining letters in lowercase.
You can use just the function by itself for whatever purpose you need/want it. Paste the above script into the body of a page to see it in action.Code:<script type="text/javascript"> function stCap(strObj){ return(strObj.charAt(0).toUpperCase()+strObj.substr(1).toLowerCase()); } document.write(stCap('loL, Get Me hoMe!')) </script>
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks