Skip to content

Instantly share code, notes, and snippets.

@mallorydxw
Created July 10, 2015 15:03
Show Gist options
  • Save mallorydxw/2c6de4e8ce361c0b7613 to your computer and use it in GitHub Desktop.
Save mallorydxw/2c6de4e8ce361c0b7613 to your computer and use it in GitHub Desktop.
Bookmarklet to disable form validation
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