Skip to content

Instantly share code, notes, and snippets.

@kidsil
Created October 31, 2014 17:33
Show Gist options
  • Save kidsil/e1a47a289e0d7c2b8c91 to your computer and use it in GitHub Desktop.
Save kidsil/e1a47a289e0d7c2b8c91 to your computer and use it in GitHub Desktop.
To Title Case function on JS
String.prototype.toTitleCase = function() {
return this.replace(/\b\w+/g, function( str ) {
return str.charAt(0).toUpperCase() + str.substr(1).toLowerCase();
});
jQuery(document).ready(function(){
jQuery( SELECTOR ).text( function( i, text ) { return text.toTitleCase() } );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment