does the script for disabling the radio button for choosing amazon gift card still work?Ok I finally found one thing that's an actual improvement over the old site: when you transfer your earnings to payments it automatically fills in the total with the amount you have available for transfer. Unless that's a script doing that.
I don't know anything about those HITs but sometimes requesters dis-qual people after they've done a certain number if they want to limit the number you can do, in order to get more responses from more, different people.SO i'm confused why Julian Michael disqualified me from answering questions when my score was 100%!!!
does the script for disabling the radio button for choosing amazon gift card still work?
Yep. That was it. Just needed to log out and back in. All good now. Thank you!Oops, failed a question apparently...next time I should just shut up and work
Maybe use the old URL or log out and try it
- Version 0.5.3 = Quick fix to make it work with old url still. New url will work when logged off and then logging back in.
we were just goofing around, he wasn't being seriousWhat does TA have to do with?
I got a TA qualification that's why i'm curious lol, i have NO idea what it iswe were just goofing around, he wasn't being serious
Try this:does the script for disabling the radio button for choosing amazon gift card still work?
// ==UserScript==
// @name mmmturkeybacon Select Amazon Payments/Disable Gift Card Withdrawal
// @author mmmturkeybacon
// @description Selects the Amazon Payments option, unchecks and disables the Amazon Gift Card withdrawal option.
// @namespace http://userscripts.org/users/523367
// @match https://www.mturk.com/mturk/transferearnings*
// @match https://payments.amazon.com/withdraw*
// @match https://worker.mturk.com/earnings*
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version 1.05
// @grant none
// ==/UserScript==
$(document).ready(function ()
{
$('input[name="selectedExecutorTypeName"][value="AmazonPayments"][type="radio"]').attr('checked', 'true');
$('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('disabled', 'true');
$('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('checked', null);
// https://payments.amazon.com/withdraw
// This form doesn't exist anymore.
$('input[id="purchaseGC"][value="purchaseGC"][name="withdrawTo"][type="radio"]').attr('disabled', 'true');
});
isn't that caused by confirm return hit?Is there a script that automatically selects okay when you return a hit? The alert box is starting to piss me off. If not, I will have to create a script myself which I suck at lol.
:goat:Try this:
Code:// ==UserScript== // @name mmmturkeybacon Select Amazon Payments/Disable Gift Card Withdrawal // @author mmmturkeybacon // @description Selects the Amazon Payments option, unchecks and disables the Amazon Gift Card withdrawal option. // @namespace http://userscripts.org/users/523367 // @match https://www.mturk.com/mturk/transferearnings* // @match https://payments.amazon.com/withdraw* // @match https://worker.mturk.com/earnings* // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js // @version 1.05 // @grant none // ==/UserScript== $(document).ready(function () { $('input[name="selectedExecutorTypeName"][value="AmazonPayments"][type="radio"]').attr('checked', 'true'); $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('disabled', 'true'); $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('checked', null); // https://payments.amazon.com/withdraw // This form doesn't exist anymore. $('input[id="purchaseGC"][value="purchaseGC"][name="withdrawTo"][type="radio"]').attr('disabled', 'true'); });
oh, they were talking about some extension in the chrome storeI got a TA qualification that's why i'm curious lol, i have NO idea what it is
Qualification: TA Participation
Requester: Pivotal Perspectives Team
Qualification Value: 1
Oh i guess thats my fault for being nosey and not knowing whats going on lol.oh, they were talking about some extension in the chrome store
If you keep doing stuff like this you're going to have to change your titleTry this:
Code:// ==UserScript== // @name mmmturkeybacon Select Amazon Payments/Disable Gift Card Withdrawal // @author mmmturkeybacon // @description Selects the Amazon Payments option, unchecks and disables the Amazon Gift Card withdrawal option. // @namespace http://userscripts.org/users/523367 // @match https://www.mturk.com/mturk/transferearnings* // @match https://payments.amazon.com/withdraw* // @match https://worker.mturk.com/earnings* // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js // @version 1.05 // @grant none // ==/UserScript== $(document).ready(function () { $('input[name="selectedExecutorTypeName"][value="AmazonPayments"][type="radio"]').attr('checked', 'true'); $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('disabled', 'true'); $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('checked', null); // https://payments.amazon.com/withdraw // This form doesn't exist anymore. $('input[id="purchaseGC"][value="purchaseGC"][name="withdrawTo"][type="radio"]').attr('disabled', 'true'); });
Confirm return is built into the new site so if someone doesn't want it, they'll have to write a script to try to turn it off or auto say okay or some such.isn't that caused by confirm return hit?
Im pretty sure its MTS that has that funtionConfirm return is built into the new site so if someone doesn't want it, they'll have to write a script to try to turn it off or auto say okay or some such.
that's okay, i'm nosey tooOh i guess thats my fault for being nosey and not knowing whats going on lol.