regex capitalize first letter function
regex capitalize first letter function with Jquery
JavaScript
var t = "france dsfsad"
t = t.toLowerCase().replace(/\b[a-z]/g, convert);
$('body').append(t);
function convert() {
return arguments[0].toUpperCase();
}