Is there a built in way with jQuery to \"title case\" a string? So given something like bob smith, it turns into \"Bob Smith\"?
You can use css, like:
.className { text-transform:capitalize; }
This capitalizes the first letter. You can read more here