Skip to content

Instantly share code, notes, and snippets.

@jgebhardt
Created March 7, 2012 20:34
Show Gist options
  • Save jgebhardt/1995934 to your computer and use it in GitHub Desktop.
Save jgebhardt/1995934 to your computer and use it in GitHub Desktop.
Bookmarklet to remove autocomplete=off in form tags
javascript:(function(){formMagic={};formMagic.fs=document.forms,formMagic.i=0;while(formMagic.i<formMagic.fs.length){formMagic.fs[formMagic.i].removeAttribute('autocomplete');formMagic.i++}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment