I am trying to create a function that onkeydown(), forces all letters to be capitalized after a comma (",") in a text input field.

I know that I can make all of the letters capital using this function:

function makeUppercase(field) {
   field.value = field.value.toUpperCase();
}

<input type="text" name="city_pairs" id="city_pairs" onblur="makeUppercase(this);" />

But am not sure how to say to do this function only after a comma is present. Any ideas?

function makeUppercase(field) {
	field.value = field.value.replace(/(, [a-z])/g,function(){return arguments[1].toUpperCase()});
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.