Skip to content

Instantly share code, notes, and snippets.

@majackson
Created March 5, 2012 10:09
Show Gist options
  • Save majackson/1977730 to your computer and use it in GitHub Desktop.
Save majackson/1977730 to your computer and use it in GitHub Desktop.
Bookmarklet to remove HTML5 validation from all forms on a page
javascript:fs=document.getElementsByTagName('form'); for (f=0;f<fs.length;f++) { f.setAttribute('novalidate', 'novalidate') }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment