Evenly presenting random terms within a sentence with one dependent on another | XM Community
Skip to main content
Question

Evenly presenting random terms within a sentence with one dependent on another


Forum|alt.badge.img+1

Hi Qualtrics community,

 

This is my first time diving into JS. I am building a survey where each question includes three separate terms describing a person (race, gender, and sexuality). Each term is randomly generated from a list of pre-entered values (race has four options, gender four, and sexuality two). The sentence at the beginning of each question reads: “Person is [race] [gender[ who identifies as [sexuality].” Based off of several other posts in this forum, I built the following JS and it is working great. However, I have three additional questions:

  1. The way this is currently written, will the options for each of the three terms be presented evenly when randomized? If no, how to correct so that they are?
  2. Is there a way to write this so that for the third term (sexuality), “gay” will be used when the second term (gender) includes “boy”, and “lesbian” will be used when the second term (gender) includes “girl”? Right now it is written as “gay/lesbian” and is generated as its own random term, independent of the second term.

 

Qualtrics.SurveyEngine.addOnReady(function()

{

/*Place your JavaScript here to run when the page is fully displayed*/

/*var order = "${e://Field/random1}"

Qualtrics.SurveyEngine.setEmbeddedData('random1', order);

document.getElementById("random1").innerHTML = order;*/

var words = ["an African American", "an Asian American", "a Latinx", "a Caucasian"]; //Your words

var i = Math.floor(Math.random() * words.length); //randomly select an index

var my_word = words[i]; //select a word

Qualtrics.SurveyEngine.setEmbeddedData( 'words', my_word); //Send the word to the Qualtrics output, otherwise you would not know which participant get which word

//Qualtrics.SurveyEngine.getEmbeddedData('words')

document.getElementById("random1").innerHTML = my_word; //show the word to respondents

 

var words1 = ["cisgender girl", "transgender girl", "cisgender boy", "transgender boy"]; //Your words

var i = Math.floor(Math.random() * words1.length); //randomly select an index

var my_word1 = words1[i]; //select a word

Qualtrics.SurveyEngine.setEmbeddedData( 'words1', my_word1); //Send the word to the Qualtrics output, otherwise you would not know which participant get which word

document.getElementById("random2").innerHTML = my_word1; //show the word to respondents

             

var words2 = ["heterosexual", "gay/lesbian"]; //Your words

var i = Math.floor(Math.random() * words2.length); //randomly select an index

var my_word2 = words2[i]; //select a word

Qualtrics.SurveyEngine.setEmbeddedData( 'words2', my_word2); //Send the word to the Qualtrics output, otherwise you would not know which participant get which word

document.getElementById("random3").innerHTML = my_word2; //show the word to respondents

});

 

  1.  I am also wondering how to make this sentence appear to participants as a single line, rather than with breaks after each generated term. Right now it looks like this when I preview the survey:

Person is

.

.

who identifies as

.

 

This is the HTML element I am using: Person is <div id="random1">.</div> <div id="random2">.</div> who identifies as <div id="random3">.</div>. 

Any suggestions how to remove the line breaks? I tried   to no avail.

 

Thanks for any thoughts.

3 replies

Forum|alt.badge.img+16

I don’t have answer for the first question.

For the 2nd question, try changing the “my_word2” section with the below?

The condition checks when the random words2 is “gay/lesbian”, check if the term “boy” or “girl” exist in my_word1, then replace my_word2 as “gay” or “lesbian”.

var words2 = ["heterosexual", "gay/lesbian"]; //Your words

var i = Math.floor(Math.random() * words2.length); //randomly select an index

var my_word2 = words2[i]; //select a word
	if (my_word1.match("girl") && my_word2.match("gay/lesbian")){
		my_word2="lesbian"
	}
	else if (my_word1.match("boy") && my_word2.match("gay/lesbian")){
		my_word2="gay"
	}

Qualtrics.SurveyEngine.setEmbeddedData( 'words2', my_word2); //Send the word to the Qualtrics output, otherwise you would not know which participant get which word

document.getElementById("random3").innerHTML = my_word2; //show the word to respondents

For the 3rd question, try changing the div to span?

Person is <span id="random1">.</span> <span id="random2">.</span> who identifies as <span id="random3">.</span>

 


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • January 7, 2025

Your randomized words will not be presented evenly, and there is no way to present them evenly using JavaScript. You should use survey flow randomizers to evenly set embedded data fields, then pipe the embedded fields into your question. For example:

Randomizer 1 of 4 Evenly Present
  Set Embedded Data: random1 = an African American
  Set Embedded Data: random1 = an Asian American
  Set Embedded Data: random1 = a Latinx
  Set Embedded Data: random1 = a Caucasian

After you set your random2 and random3 embedded data fields the same way, you can use survey flow branches to reset random3 based on the values of random2 and random3.

You won’t need HTML in your question, just pipe the values:

Person is ${e://Field/random1} ${e://Field/random2} who identifies as ${e://Field/random3}.

 


Forum|alt.badge.img+1
  • Author
  • 2 replies
  • January 12, 2025

Thank you for the quick responses! If I clear the JS and use randomizers with embedded fields, it shows up how I want it to on the screen, but the same three terms are generated for every question, e.g. “Caucasian transgender boy who identifies as gay”. This happens when I preview it or publish it. Here is the survey flow I have entered:

 

Randomizer 1 of 4 Evenly Present

  Set Embedded Data: random1 = an African American

  Set Embedded Data: random1 = an Asian American

  Set Embedded Data: random1 = a Latinx

  Set Embedded Data: random1 = a Caucasian

 

Randomizer 1 of 4 Evenly Present

  Set Embedded Data: random2 = cisgender girl

  Set Embedded Data: random2 = transgender girl

  Set Embedded Data: random2 = cisgender boy

  Set Embedded Data: random2 = transgender boy

 

Then branch if: random2 contains girl

  Randomizer 1 of 2 Evenly Present

    Set Embedded Data: random3 = heterosexual

    Set Embedded Data: random3 = lesbian

 

Then branch if: random2 contains boy

  Randomizer 1 of 2 Evenly Present

    Set Embedded Data: random3 = heterosexual

    Set Embedded Data: random3 = gay

 

Show block

 

In the question I have: Person is ${e://Field/random1} ${e://Field/random2} who identifies as ${e://Field/random3}. 


Leave a Reply