Created
August 20, 2016 12:58
-
-
Save VincentDamour/14b2def0b1eb896643a078af4cb965ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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