Is there a simple way to convert a string to title case? E.g. john smith becomes John Smith. I\'m not looking for something complicated like John R
john smith
John Smith
here's another solution using css (and javascript, if the text you want to transform is in uppercase):
html
JOHN SMITH
js
var str = document.getElementById('text').innerHtml; var return_text = str.toLowerCase();
css
#text{text-transform:capitalize;}