Skip to content

Instantly share code, notes, and snippets.

@byverdu
Created February 14, 2015 12:21
Show Gist options
  • Save byverdu/537ce369c6590c5ed484 to your computer and use it in GitHub Desktop.
Save byverdu/537ce369c6590c5ed484 to your computer and use it in GitHub Desktop.
// deshabilitar el actual comportamiento
form.addEventListener('invalid', function(event) {
event.preventDefault();
}, true);
// Support Safari and Android browser
form.addEventListener('submit', function(event) {
if (!this.checkValidity()) {
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment