With jQuery, how do I capitalize the first letter of a text field while the user is still editing that field?

Just use CSS.

.myclass 
{
    text-transform:capitalize;
}

Leave a Comment