Skip to content

Instantly share code, notes, and snippets.

@VincentDamour
Created August 20, 2016 12:58
Show Gist options
  • Save VincentDamour/14b2def0b1eb896643a078af4cb965ce to your computer and use it in GitHub Desktop.
Save VincentDamour/14b2def0b1eb896643a078af4cb965ce to your computer and use it in GitHub Desktop.
function validateEmail() {
// Valider le courriel ici et afficher un message d'erreur si invalide
}
var emailInput = document.getElementById("email-field");
emailInput.addEventListener("keyup", _.debounce(validateEmail, 500));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment