Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 28, 2020 22:45
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 parzibyte/e4f2313b3f0e348560bc096a365fca4a to your computer and use it in GitHub Desktop.
Save parzibyte/e4f2313b3f0e348560bc096a365fca4a to your computer and use it in GitHub Desktop.
const $elementos = document.querySelectorAll(".prevenir-envio");
$elementos.forEach(elemento => {
elemento.addEventListener("keydown", (evento) => {
if (evento.key == "Enter") {
// Prevenir
evento.preventDefault();
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment