Hi there,
I would like to bring a text value from a form.
Here is an example.
!
I made the form using this thread (https://www.qualtrics.com/community/discussion/4136/1-question-multiple-text-entry-fields).
If a participant enters 'a', 'b', 'c' in each box, I will bring the values to the other form to ask another relevant question.
!
It seems like I need a java code for the question part in the second form to bring the answers in the first form.
Thanks in advance
Page 1 / 1
You can pipe this in lables like as below:-
${q://QID2/ChoiceTextEntryValue/1}
${q://QID2/ChoiceTextEntryValue/2}
${q://QID2/ChoiceTextEntryValue/3}
Make sure to give page break between these questions.
${q://QID2/ChoiceTextEntryValue/1}
${q://QID2/ChoiceTextEntryValue/2}
${q://QID2/ChoiceTextEntryValue/3}
Make sure to give page break between these questions.
Thank you a lot, it works well.
May ask you one more question?
!
I want to insert "$" in front of the boxes (or inside if it is easier).
What code would you recommend?
May ask you one more question?
!
I want to insert "$" in front of the boxes (or inside if it is easier).
What code would you recommend?
Yes add like below
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" .InputText").before("$");
});
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" .InputText").before("$");
});
Thank you again!
If you looking to enter on form , you can refer below post
https://www.qualtrics.com/community/discussion/3131/text-entry-form-with-js-to-add-text-added-text-after-box-wraps-around-to-next-line-on-mobile
https://www.qualtrics.com/community/discussion/3131/text-entry-form-with-js-to-add-text-added-text-after-box-wraps-around-to-next-line-on-mobile
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.