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

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

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!


Thanks Deepak that worked out great!


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


Leave a Reply