Skip to content

Instantly share code, notes, and snippets.

@valdelama
Last active August 29, 2015 14:22
Show Gist options
  • Save valdelama/3c95621affc309f326bb to your computer and use it in GitHub Desktop.
Save valdelama/3c95621affc309f326bb to your computer and use it in GitHub Desktop.
html5validation
$fliInput.blur(function() {
// check if html5 validation passes
if (!e.target.checkValidity()) {
wrapper.addClass('error');
} else {
wrapper.removeClass('error');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment