Skip to content

Instantly share code, notes, and snippets.

@VincentDamour
Last active August 3, 2016 17:12
Show Gist options
  • Save VincentDamour/6bec7fac95c7a7bcb9a7f3a4a149c207 to your computer and use it in GitHub Desktop.
Save VincentDamour/6bec7fac95c7a7bcb9a7f3a4a149c207 to your computer and use it in GitHub Desktop.
function validateEmail() {
// Validate email here and show error message if not valid
}
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