Results 1 to 2 of 2

Thread: Need a Function to capitalize first letter

  1. #1
    Join Date
    Apr 2005
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need a Function to capitalize first letter

    I want to add to my library a function that will capitalize first letter and the remaining letters in lowercase.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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>
    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.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •