sliding scale bar question format | XM Community
Skip to main content
Solved

sliding scale bar question format

  • December 17, 2023
  • 4 replies
  • 220 views

Forum|alt.badge.img+1

Am designing a survey using sliding scale bars. Would like the numeric scale labels AND descriptive labels to appear underneath the scale bar as opposed to above. Pictured is what I currently see. Qualtrics support confirmed this would need a custom code to accomplish. 

Ideally both the numbers and the descriptions (“Light sleep,” “Deep sleep”) would be below the sliding bar. 

Best answer by vgayraud

Qualtrics.SurveyEngine.addOnReady(function()
{

jQuery("#"+this.questionId+" ul.labels").insertAfter("#"+this.questionId+" div.slider-container"); 
jQuery("#"+this.questionId+" ul.numbers").insertAfter("#"+this.questionId+" div.slider-container"); 

});

 

View original

4 replies

vgayraud
QPN Level 5 ●●●●●
Forum|alt.badge.img+49
  • QPN Level 5 ●●●●●
  • 376 replies
  • December 18, 2023

Forum|alt.badge.img+1
  • Author
  • 2 replies
  • December 18, 2023

@vgayraud Thank you so much! The code you provided in that answer for multiple sliding scale questions worked. Specifically the one from this reply https://community.qualtrics.com/custom%2Dcode%2D12/adjust%2Dthe%2Dscale%2Dpoints%2Dlocation%2Din%2Da%2Dslider%2Dquestion%2D18741?postid=46505#post46505 

When I use that code it looks like this 

 

I would like it if, ideally, the numbers were directly under the scale bar and then the labels “light sleep, deep sleep” were underneath the numbers. Could you potentially provide the code for this?

 

Thank you so much!!


vgayraud
QPN Level 5 ●●●●●
Forum|alt.badge.img+49
  • QPN Level 5 ●●●●●
  • 376 replies
  • Answer
  • January 18, 2024
Qualtrics.SurveyEngine.addOnReady(function()
{

jQuery("#"+this.questionId+" ul.labels").insertAfter("#"+this.questionId+" div.slider-container"); 
jQuery("#"+this.questionId+" ul.numbers").insertAfter("#"+this.questionId+" div.slider-container"); 

});

 


Forum|alt.badge.img+1
  • Author
  • 2 replies
  • January 19, 2024

Thank you sooo much!! :-)


Leave a Reply