Last active
August 29, 2015 14:22
-
-
Save valdelama/3c95621affc309f326bb to your computer and use it in GitHub Desktop.
html5validation
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
$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