Skip to content

Instantly share code, notes, and snippets.

@douglasmiranda
Created October 5, 2012 21:07
Show Gist options
  • Save douglasmiranda/3842414 to your computer and use it in GitHub Desktop.
Save douglasmiranda/3842414 to your computer and use it in GitHub Desktop.
String.prototype.title_case = function () {
return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
};
r = '';
$('#IdModelo option').each(function(){
r += 'u\''+$(this).text().title_case()+'\', ';
});
console.log(r);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment