This is the title of my page:
<title>john smith - Site and site - jobs</title>
I have to capitalize the title of the page until the first hifen (-). This is my code, but lost the second part and the first hyphen.
function toTitleCase(str){
var str = document.title;
subTitle = str.split('-')[0];
return str.substring(0,str.indexOf('-')).replace(/\w\S*/g, function(txt){
return txt.charAt(0).toUpperCase() + txt.substring(1);
});
}
document.title = toTitleCase(document.title);