Forces the autocomplete attribute for all forms and input fields in the page (yes, i love JQuery...)
À partir de
// ==UserScript==
// @name JQ_ForceAutoComplete
// @namespace http://stackoverflow.com/users/982924/rasg
// @author RASG
// @version 2012.09.21
// @description Forces the autocomplete attribute for all forms and input fields in the page (yes, i love JQuery...)
// @require http://code.jquery.com/jquery.min.js
// @include http*://*
// @grant GM_log
// ==/UserScript==
$(window).load(function(){
$("body")
.on("focus", "form", function(){ $(this).attr("autocomplete", "on").removeAttr("disabled readonly") })
.on("focus", "input", function(){ $(this).attr("autocomplete", "on").removeAttr("disabled readonly") })
});