Skip to content

Instantly share code, notes, and snippets.

@morozVA
Created May 23, 2018 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morozVA/cc7bfbf3a2031624476fbb8da4aef23b to your computer and use it in GitHub Desktop.
Save morozVA/cc7bfbf3a2031624476fbb8da4aef23b to your computer and use it in GitHub Desktop.
js запретить печатать кириллицу в input
function Latin(obj) {
if (/^[a-zA-Z0-9 ,.\-:"()]*?$/.test(obj.value))
obj.defaultValue = obj.value;
else
obj.value = obj.defaultValue;
}
<input onkeyup="Latin(this);">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment