Skip to content

Instantly share code, notes, and snippets.

@james
Created October 29, 2012 18:02
Show Gist options
  • Save james/3975292 to your computer and use it in GitHub Desktop.
Save james/3975292 to your computer and use it in GitHub Desktop.
Waitrose Login Paste Password
// ==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