Skip to content

Instantly share code, notes, and snippets.

@bartcis
Created May 12, 2019 07:41
Show Gist options
  • Save bartcis/46568bdf0a30aec498277d3eb3db40e0 to your computer and use it in GitHub Desktop.
Save bartcis/46568bdf0a30aec498277d3eb3db40e0 to your computer and use it in GitHub Desktop.
Pseudo code for form validation
formInput.addEventListener('focus', () => {
if (formInput.valid) {
// Validaton - value correct
} else {
// Validaton - value incorrect
}
});
submitButton.addEventListener('click', (event) => {
event.preventDefault();
// Validation
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment