i created this script and its not working. i followed the tutorial found in this thread and its not working. what am i doing wrong? // ==UserScript== // @Name a9 keyword // @namespace http://tampermonkey.net/ // @version 1.0 // @description select all the nos // @author meganisonfire // @match *mturkcontent* // @Grant GM_log // @require http://code.jquery.com/jquery-3.1.1.min.js // ==/UserScript== $("input[value=no]").click();
If you need to make any changes, just swap out the word between the " " so you can change "no" to "yes" or any thing else. Just keep the rest of the line the same. Here's the full script I made for someone. You can just save it to alter, as needed. Code: // ==UserScript== // @name A9 tag // @namespace http://tampermonkey.net/ // @version 1.0 // @description no // @author WillowWolf // @match https://www.mturkcontent.com/dynamic/* // @grant GM_log // @require http://code.jquery.com/jquery-3.1.1.min.js // ==/UserScript== $('input[value="no"]').click();
thank you so much! i figured something wasn't right. I copied the code that you provided and it works like a charm. thank you again!!!