[Script] need help with a9 keyword script

Discussion in 'mTurk Scripts & Resources' started by meganisonfire, Aug 28, 2019.

  1. meganisonfire

    meganisonfire Turker

    Messages:
    130
    Gender:
    Female
    Ratings:
    +19
    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();
     
  2. WillowWolf

    WillowWolf Mischief Managed

    Messages:
    16,744
    Gender:
    Female
    Ratings:
    +39,578
    Your last line needs to be:
    Code:
    $('input[value="no"]').click();
     
    • Today I Learned Today I Learned x 1
  3. WillowWolf

    WillowWolf Mischief Managed

    Messages:
    16,744
    Gender:
    Female
    Ratings:
    +39,578
    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 Today I Learned x 3
  4. meganisonfire

    meganisonfire Turker

    Messages:
    130
    Gender:
    Female
    Ratings:
    +19
    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 Love x 2
  5. WillowWolf

    WillowWolf Mischief Managed

    Messages:
    16,744
    Gender:
    Female
    Ratings:
    +39,578
    You're welcome! :emoji_relaxed:
     
    • Love Love x 1
  6. Melting Glacier

    Melting Glacier PE: $30.01 - That's over $1.25/hour! ┬┴┤( ͡° ͜ʖ├┬┴

    Messages:
    6,157
    Gender:
    Male
    Ratings:
    +11,423
    This thread is wholesome and precious and I love it.

    :emoji_hugging:
     
    • Love Love x 3
    • Like Like x 1
    • LOL LOL x 1
  7. Dawnia

    Dawnia Turker

    Messages:
    145
    Gender:
    Female
    Ratings:
    +12
    Thank you for this. I made a script for VEVO
     
    Last edited: Sep 5, 2019