Last active
August 29, 2019 16:36
-
-
Save anevins12/7fafe92efe37ee4673238ea02f256fd9 to your computer and use it in GitHub Desktop.
Remove form browser 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
(function disableFormBrowserValidation() { | |
'use strict'; | |
const $forms = jQuery('form:visible'); | |
$forms.attr('novalidate', ''); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment