Last active
December 30, 2015 21:39
-
-
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.
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
<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