Skip to content

Instantly share code, notes, and snippets.

@VictorHugoBatista
Created November 6, 2018 18:55
Show Gist options
  • Save VictorHugoBatista/d14e1036a403d1df9f84c495f2f80d0d to your computer and use it in GitHub Desktop.
Save VictorHugoBatista/d14e1036a403d1df9f84c495f2f80d0d to your computer and use it in GitHub Desktop.
Reveal all inputs hidden on the page with his contents. Paste this on console terminal. This requires jQuery
(function($) {
$('input[type="hidden"]').attr('type', 'text');
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment