Created
October 29, 2012 18:02
-
-
Save james/3975292 to your computer and use it in GitHub Desktop.
Waitrose Login Paste Password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Waitrose Login Paste Password | |
// @description Allow to paste password in Waitrose's login forms | |
// @author James Darling <[email protected]> | |
// @include http*://www.waitrose.com/* | |
// ==/UserScript== | |
document.getElementById("logonPasswordField").setAttribute("onpaste", "return true;"); | |
document.getElementById("newPasswordField").setAttribute("onpaste", "return true;"); | |
document.getElementById("logonPasswordVerifyField").setAttribute("onpaste", "return true;"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment