Is there a built in way with jQuery to \"title case\" a string? So given something like bob smith, it turns into \"Bob Smith\"?
function camelCase(str){ str = $.camelCase(str.replace(/[_ ]/g, '-')).replace(/-/g, ''); return str;//.substring(0,1).toUpperCase()+str.substring(1); },