NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Auto-Radio // @namespace http://use.i.E.your.homepage/ // @version 0.1 // @description Just checks radio boxes // @match http://*/* // @require http://code.jquery.com/jquery-2.1.1.js // @copyright DubWub // ==/UserScript== $('body').append('<input type="button" value="CheckEm" id="CheckemButton">') $("#CheckemButton").css("position", "fixed").css("top", 0).css("left", 0); $('#CheckemButton').click(function(){ $("form input:radio").each(function () { $(this).prop("checked", true); }); });