Skip to content

Instantly share code, notes, and snippets.

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 ColonelMoutarde/2c7f54ecc139f9bbf2647414aeba755b to your computer and use it in GitHub Desktop.
Save ColonelMoutarde/2c7f54ecc139f9bbf2647414aeba755b to your computer and use it in GitHub Desktop.
/** Force number in input field of Organisator phone number */
let textarea = document.getElementById('event_form_author_phone');
textarea.addEventListener('keydown', (e) => {
console.log(e.key);
if (['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'Backspace'].indexOf(e.key) === -1) {
e.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment