Skip to content

Instantly share code, notes, and snippets.

@AnatoliyAkhmatov
Last active August 14, 2021 05:57
Show Gist options
  • Save AnatoliyAkhmatov/0f851a1b1ea8abd264594706c6c00486 to your computer and use it in GitHub Desktop.
Save AnatoliyAkhmatov/0f851a1b1ea8abd264594706c6c00486 to your computer and use it in GitHub Desktop.
input name mask
$('#input_name').keypress(function(e) {
if (e.keyCode == 32) return false;
if (this.value.length == 1) {
this.value = this.value.toUpperCase()
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment