Skip to content

Instantly share code, notes, and snippets.

@simonrjones
Last active December 30, 2015 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonrjones/7888737 to your computer and use it in GitHub Desktop.
Save simonrjones/7888737 to your computer and use it in GitHub Desktop.
Bookmarklet to remove HTML5 validation from any forms on a page. Useful for testing.
<a href="javascript:var f%3Ddocument.getElementsByTagName(%27form%27)%3Bfor (var i%3D0%3B i<f.length%3Bi%2B%2B)%7Bf%5Bi%5D.setAttribute(%27novalidate%27,%27novalidate%27)%3B%7D">HTML5 novalidate</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment