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

Changing the location of the language selector

  • August 5, 2021
  • 4 replies
  • 221 views

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

4 replies

Forum|alt.badge.img+3
  • Level 2 ●●
  • August 8, 2021

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


  • Author
  • August 12, 2021

TSAcc
Yes. Left aligned, still above next button


Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • August 12, 2021

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


Forum|alt.badge.img+3
  • Level 2 ●●
  • August 13, 2021

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