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();
-
-
Your last line needs to be:
Code:$('input[value="no"]').click();
-
Today I Learned x 1
-
-
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();
-
Today I Learned x 3
-
-
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!!!
-
Love x 2
-
-
-
Melting Glacier PE: $30.01 - That's over $1.25/hour! ┬┴┤( ͡° ͜ʖ├┬┴
This thread is wholesome and precious and I love it.
:emoji_hugging:-
Love x 3 -
Like x 1 -
LOL x 1
-