Move Not Applicable Below Slider | XM Community
Skip to main content

Move Not Applicable Below Slider

  • December 3, 2022
  • 3 replies
  • 248 views

Forum|alt.badge.img+6

I've seen a few posts about this but have not been able to find an answer. I want to keep the mobile view of the slider, but move the not applicable checkbox below the slider. I was able to mock this up by editing the html when inspecting the code. I don't know how to permanently do this with javascript or CSS.
Here is what I want:
image.pngI was able to do this with by moving the

3 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • December 3, 2022

gsheppard
You can use JS like this:
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
var n = jQuery('.slider-container').length;
for(let i=0;i {
jQuery('.slider-container')[i].append(jQuery('.n-a-container')[i]);

}
});


Hope it helps!


Forum|alt.badge.img+6
  • Author
  • Level 2 ●●
  • December 5, 2022

Thanks Deepak that worked out great!


Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • December 5, 2022

https://community.qualtrics.com/XMcommunity/discussion/comment/52864#Comment_52864Glad it worked for you!
Kindly accept the answer if was helpful.