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?