Skip to content

Instantly share code, notes, and snippets.

@ethagnawl
Created April 18, 2017 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethagnawl/37145fb38ad3aa0761381f0be8fe7415 to your computer and use it in GitHub Desktop.
Save ethagnawl/37145fb38ad3aa0761381f0be8fe7415 to your computer and use it in GitHub Desktop.
re-enable form input paste
// re-enable paste on your favorite bank's website
document.querySelectorAll('input').forEach(function (input) {
input.setAttribute('onpaste', '');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment