Position of labels to flank slider | XM Community
Skip to main content
Solved

Position of labels to flank slider

  • November 19, 2018
  • 2 replies
  • 100 views

I have a slider question that has 22 items. Is there a way to have the 2 labels "bookend" each item on the left and right as anchor text for each item?

Best answer by Anonymous

Hello @TempleResearcher , Create two labels using Slider- Label option and paste the following code in the js(OnReady) of the Slider question `jQuery("ul.labels").insertAfter(".statement-container");`
View original

2 replies

  • 0 replies
  • Answer
  • November 20, 2018
Hello @TempleResearcher , Create two labels using Slider- Label option and paste the following code in the js(OnReady) of the Slider question `jQuery("ul.labels").insertAfter(".statement-container");`

  • 2 replies
  • November 14, 2019
Updating this old thread because the answer from 2018 caused me issues. More rigorous code (applies only to the question you put it in). Add in Qualtrics.SurveyEngine.addOnload: For labels 'bookended' above each slider bar: * jQuery("#"+this.questionId+" ul.labels").insertAfter("#"+this.questionId+" div.statement-container"); For labels 'bookended' below each slider bar: * jQuery("#"+this.questionId+" ul.labels").insertAfter("#"+this.questionId+" div.slider-container");

Leave a Reply