Changing the location of the language selector | XM Community
Skip to main content

I am currently using jquery to reposition the language selector above the next button.
 jQuery("#Buttons").before(jQuery(".LanguageSelectorContainer"));
I would however like to position it below the text left aligned. Any idea how to do it?
qualtrics example.PNG

Did you mean below the question text? In other words, above the ‘Next’ button but left aligned?


TSAcc
Yes. Left aligned, still above next button


Qualtrics.SurveyEngine.addOnReady(function () {
    let lc = document.querySelector(".LanguageSelectorContainer");
    lc.style.display = "contents";
    this.questionContainer.insertAdjacentElement("beforeend", lc);
});
Demo.


  jQuery("#Buttons").before(jQuery(".LanguageSelectorContainer").css('float','left'));


Leave a Reply