Skip to content

Instantly share code, notes, and snippets.

@rewmike
Created October 24, 2013 22:09
Show Gist options
  • Save rewmike/7146001 to your computer and use it in GitHub Desktop.
Save rewmike/7146001 to your computer and use it in GitHub Desktop.
Disable HTML5 Form Validation
(function (d) {
var f = d.forms, l = f.length, i = 0;
for (i; i < l; ++i) {
f[i].setAttribute('novalidate', true);
}
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment