Skip to content

Instantly share code, notes, and snippets.

@sotoz
Last active February 1, 2016 11:28
Show Gist options
  • Save sotoz/88a8f02174d4ebc1ec57 to your computer and use it in GitHub Desktop.
Save sotoz/88a8f02174d4ebc1ec57 to your computer and use it in GitHub Desktop.
inputToUppercase
function inputUppercase(input)
{
input.bind('keyup', function (e) {
qq = input.val().toUpperCase();
//fix greek accented characters
data = qq.replace(/[ΈΆΌΎΊΉ]/g, function (m) {
return {
'Έ': 'Ε',
'Ά': 'Α',
'Ό': 'Ο',
'Ί': 'Ι',
'Ύ': 'Υ',
'Ή': 'Η'
}[m];
});
input.val(data);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment