Hi everyone,
I would like to change the label/text of the last button of my survey to "Send Survey" also for other languages. I just learned how to do it for the entire survey by using JavaScript (see below).
jQuery('#NextButton').val('Send Survey');
I need a different text based on the selected language. I assume that it has to be something like a "If...then" depending on embedded data. Can anyone advise?
Thanks.
Jack.
Solved
Change Text of "Next Button" based on language code
Best answer by grahulp5
Use this in header of the script:
var a=Qualtrics.SurveyEngine.getEmbeddedData('Next') //here next is the variable used to store value for next button/ can be a pipe-in for translations
jQuery('#NextButton').val(a)
and then update the embedded variable or use that as a pipe-in from survey level itself.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

