Question
How to set the language according to the selected country in a question?
Hello!
Can I fix the language of a survey according to the selected country in the initial questions of the survey?
I have a survey for 7 countries and it includes images with phrases on the languages of those particular countries (through branches). So, I need to make sure that the person that responds the questionnaire really understands the language of the country they selected. I can not use more branches, as the survey is already huge and that will difficult the data analysis later on. I also can not use other links to different surveys, as we are using panel respondents.
Is there a code that I can implement inside the survey to force respondents to see que questionnaire in the language of the selected country and not their browser language?
Thank you
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

```
Qualtrics.SurveyEngine.addOnReady(function() {
var lang = Qualtrics.SurveyEngine.getEmbeddedData('SelectedLanguage');
jQuery('#Q_lang').val(lang);
jQuery('#Q_lang').trigger("change");
});
```
Working Example: https://qualtricssfi.az1.qualtrics.com/jfe/preview/SV_1S9Vsd1SAm5fNc1?Q_SurveyVersionID=current&Q_CHL=preview
QSF attached
JS in the first item of the block that follows the block containing the 'language' item: