Skip to content

Instantly share code, notes, and snippets.

@easement
Created October 21, 2015 13:39
Show Gist options
  • Save easement/71c7fce9f1fe49c23a66 to your computer and use it in GitHub Desktop.
Save easement/71c7fce9f1fe49c23a66 to your computer and use it in GitHub Desktop.
Reveal hidden fields bookmarklet
javascript:(function(){var%20is=document.getElementsByTagName("input");for(i=0;i<is.length;i++){if(typeof(is[i].attributes["type"])!="undefined"&&is[i].attributes["type"].value.toLowerCase()=="hidden"){is[i].setAttribute("type","text");is[i].setAttribute("style","background-color:#000000;color:#FFFFFF");}}})();
@easement
Copy link
Author

usage

bookmark something.
edit the bookmark and put in the code in this file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment