Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 12, 2021 19:01
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/cd8e7dde44632d9cd300d54138041fef to your computer and use it in GitHub Desktop.
Save parzibyte/cd8e7dde44632d9cd300d54138041fef to your computer and use it in GitHub Desktop.
// Obtener referencias
const $formulario = document.querySelector("#formulario"),
$nombre = document.querySelector("#nombre"),
$correo = document.querySelector("#correo");
$formulario.onsubmit = evento => {
evento.preventDefault();
// Aquí validar
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment