Is there any existing Javascript to hide the translations after certain page in the survey
Hi,
Just curious, would you mind elaborating what kind of translations are you referring to?
Since it might be (1) survey language dropdown selection or (2) survey question language text itself.
For (1), you can refer to Hiding language selection drop down | XM Community to use css to hide the language selection drop down for whole survey.
Then, for those questions that you wish to show language selection, add the JavaScript code for those questions.
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
jQuery(".LanguageSelectorContainer").css("display", "block");
});
For (2), in Qualtrics Translations section, you can leave the question text as the default text or bypass it by adding a space at the end of the question text.
Note: Remember to hide the survey language dropdown selection for these questions to prevent survey takers from getting confused with language selection not changing the question text.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.