Move Not Applicable Below Slider | XM Community

Move Not Applicable Below Slider

  • 3 December 2022
  • 3 replies
  • 157 views

Userlevel 1
Badge +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

Userlevel 7
Badge +36

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!

Userlevel 1
Badge +6

Thanks Deepak that worked out great!

Userlevel 7
Badge +36

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

Leave a Reply