Created
September 9, 2013 07:26
-
-
Save vdchristelle/6492450 to your computer and use it in GitHub Desktop.
disable html5 validation
This file contains 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
/* disable html5 validation */ | |
$('form').each(function() { | |
$(this).attr('novalidate', 'novalidate'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment