Skip to content

Instantly share code, notes, and snippets.

@Khoulaiz
Forked from derekprior/enable_paste.js
Created May 21, 2014 16:35
Show Gist options
  • Save Khoulaiz/4a572507d0737e0bb540 to your computer and use it in GitHub Desktop.
Save Khoulaiz/4a572507d0737e0bb540 to your computer and use it in GitHub Desktop.
var inputs = document.getElementsByTagName('input');
for (var i=0; i < inputs.length; i++) {
if (inputs[i].getAttribute('type').toLowerCase() === 'password') {
inputs[i].setAttribute('onpaste', '');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment