Skip to content

Instantly share code, notes, and snippets.

@mallorydxw
Created August 24, 2015 14:39
Show Gist options
  • Save mallorydxw/3852c3d6f93f144757cb to your computer and use it in GitHub Desktop.
Save mallorydxw/3852c3d6f93f144757cb to your computer and use it in GitHub Desktop.
A bookmarklet that sets .noValidate=true on all forms in a page
javascript:var f=document.querySelectorAll('form');for(var i=0;i<f.length;i++){f[i].noValidate=true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment