03/11 - Impromptu Dance Party Monday!

Status
Not open for further replies.

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
I don't know how to write code or I would for the three answers one. Most of the responses are "yes", "furniture" and "floor"!
 

Ev0Iution

New Member
Joined
Feb 26, 2019
Messages
26
Reaction score
48
Points
213
Age
39
I used to have an addon/script for Mturk that opened a link in a 2nd tab and new link clicks opened in that same secondary tab. Anyone know what I'm talking about?
 

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
I used to have an addon/script for Mturk that opened a link in a 2nd tab and new link clicks opened in that same secondary tab. Anyone know what I'm talking about?
no
 

rsmath

Hatch Green Chile
Joined
Jan 13, 2019
Messages
8,947
Reaction score
19,331
Points
938
Location
Desert Scrub
Gender
Male
that was a fun survey i just finished. 8 bubbles across yet only 7 headers from "not at all" to "strongly' and no feedback box at the end of the survey to let the university know that the bubbles didnt match the headers.
 

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
I have this one:
/ ==UserScript==
// Name @Name A9 Data Validation
// @version .01
// @description Amazon Requester Inc. -
A9 Data Validation
// @author GTR
// @include *s3.amazonaws.com*
// @require https://code.jquery.com/jquery-3.0.0-alpha1.min.js
// ==/UserScript==
$('input[value="FALSE"]').click();
$('input[value="None"]').click();
$('input[value="FRONT"]').click();
$('input[value="YesUnsure"]').click();


But the values from the current hit don't seem to work
 

Ev0Iution

New Member
Joined
Feb 26, 2019
Messages
26
Reaction score
48
Points
213
Age
39
What does it do exactly?
I have HIT in Left window, open link with NiftySplit and put that on the right side. Next time I click a link from the Left side HITs it automatically opens in the Right side window.
 

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
that is a great script! It helps with these!
 

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
I'm trying it now.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
I don't know how to write code or I would for the three answers one. Most of the responses are "yes", "furniture" and "floor"!
Code:
// ==UserScript==
// @name         What surface would you place the object?
// @version      1.0
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// ==/UserScript==


const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');

function preclick (elements_to_click, ...numbers) {
    const radios_and_checkboxes_to_preclick = [];
    Array.prototype.slice.call(arguments).forEach(el => radios_and_checkboxes_to_preclick.push(el));
    radios_and_checkboxes_to_preclick.forEach(element => radios_and_checkboxes[element].click());
    console.log(`There are a total of ${radios_and_checkboxes.length} checkboxes/radio's on this page.  The requested preclicks are numbers ${radios_and_checkboxes_to_preclick}`);
}
preclick(0,2,11);
@sks
 

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
Code:
// ==UserScript==
// @name         What surface would you place the object?
// @version      1.0
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// ==/UserScript==


const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');

function preclick (elements_to_click, ...numbers) {
    const radios_and_checkboxes_to_preclick = [];
    Array.prototype.slice.call(arguments).forEach(el => radios_and_checkboxes_to_preclick.push(el));
    radios_and_checkboxes_to_preclick.forEach(element => radios_and_checkboxes[element].click());
    console.log(`There are a total of ${radios_and_checkboxes.length} checkboxes/radio's on this page.  The requested preclicks are numbers ${radios_and_checkboxes_to_preclick}`);
}
preclick(0,2,11);
Thank you!!!!
Code:
// ==UserScript==
// @name         What surface would you place the object?
// @version      1.0
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// ==/UserScript==


const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');

function preclick (elements_to_click, ...numbers) {
    const radios_and_checkboxes_to_preclick = [];
    Array.prototype.slice.call(arguments).forEach(el => radios_and_checkboxes_to_preclick.push(el));
    radios_and_checkboxes_to_preclick.forEach(element => radios_and_checkboxes[element].click());
    console.log(`There are a total of ${radios_and_checkboxes.length} checkboxes/radio's on this page.  The requested preclicks are numbers ${radios_and_checkboxes_to_preclick}`);
}
preclick(0,2,11);
@sks
THANK YOU!!!!
 
  • Like
Reactions: SarahAshlee90

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
Code:
// ==UserScript==
// @name         What surface would you place the object?
// @version      1.0
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// ==/UserScript==


const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');

function preclick (elements_to_click, ...numbers) {
    const radios_and_checkboxes_to_preclick = [];
    Array.prototype.slice.call(arguments).forEach(el => radios_and_checkboxes_to_preclick.push(el));
    radios_and_checkboxes_to_preclick.forEach(element => radios_and_checkboxes[element].click());
    console.log(`There are a total of ${radios_and_checkboxes.length} checkboxes/radio's on this page.  The requested preclicks are numbers ${radios_and_checkboxes_to_preclick}`);
}
preclick(0,2,11);
@sks
 
  • Like
Reactions: Merovign

sks

Member
Joined
Nov 1, 2018
Messages
272
Reaction score
260
Points
313
Gender
Female
Oh no Im having a problem...script is only checking "other" box and no others...do I need to amend it in some way?
 
  • Like
Reactions: SarahAshlee90

Maria Tortilla

Dave Grohl is my spirit animal
Contributor
Joined
Jan 17, 2016
Messages
4,246
Reaction score
11,798
Points
1,338
Age
39
Gender
Female
I just signed up for calendar collection 2019. Boy I must really hate myself! :flush:
 

TotalBabe

Well-Known Member
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
6,574
Reaction score
20,571
Points
1,213
Gender
Female
~6.5 mins.

Title: Answer a survey about body size and shape | Accept
Requester: carolyn [ANCUMXZJ1EDKE] Contact
TV: [Hrly=$17.99] [Pay=Generous] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: No Reviews
TO2: No Reviews
Reward: 1.00
Duration: 1:00:00
Available: 1
Description: your opinion on size acceptance and diversity
Qualifications: Masters Exists ; Location EqualTo US
 
  • Like
Reactions: Concise

cb456

Let's do some hits!
Mentor
Contributor
Joined
Jul 25, 2017
Messages
5,983
Reaction score
15,962
Points
1,013
Gender
Male
its like jetlag but worse
 
Status
Not open for further replies.