Position of labels to flank slider | XM Community
Solved

Position of labels to flank slider

  • 19 November 2018
  • 2 replies
  • 58 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?
icon

Best answer by Anonymous 20 November 2018, 03:30

View original

2 replies

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");`
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