Skip to content

Instantly share code, notes, and snippets.

@gkucmierz
Created June 9, 2017 07:35
Show Gist options
  • Select an option

  • Save gkucmierz/1ba24b400ad89d2c90107ceb72e58276 to your computer and use it in GitHub Desktop.

Select an option

Save gkucmierz/1ba24b400ad89d2c90107ceb72e58276 to your computer and use it in GitHub Desktop.
// ing business login
var pass = prompt().trim();
[].map.call(document.querySelector('.pass-holder').querySelectorAll('[type=password]'), (el, i) => {
if ([].slice.call(el.classList).indexOf('logFieldInactive') === -1) {
el.value = pass[i];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment