Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Capitalize //JavaScript Function



[UPDATED CODE AND HELP CAN BE FOUND HERE]


usage:

document.write(s = "jonas Raoni a SOARES silva", " => ", s.capitalize());


code:

//+ Jonas Raoni Soares Silva
//@ http://jsfromhell.com/string/capitalize [v1.0]

String.prototype.capitalize = function(){ //v1.0
    return this.replace(/\w+/g, function(a){
        return a.charAt(0).toUpperCase() + a.substr(1).toLowerCase();
    });
};
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS