Hi--
I was hoping that someone could help me with creating Javascript to split a single slider question into a grid - where statements are divided into different columns, each with their own sliders.
Some background:
I have a multiple-choice question in which I use the “column” alignment to split up answer choices (in my case, photographs) into a 3x2 grid (randomized choice order). I then use carry-forward to bring Displayed Choices to a subsequent slider question, where they answer a slider question for each photograph. I’d really like to display this question in the same way as the MC question -- that is, in a 3x2 grid.
I know how to split up different questions on a single page:
HTML: <style type="text/css">#Questions{display:flex;}</style>
Java:
Qualtrics.SurveyEngine.addOnload(function() {
document.getElementById('Questions').style.display = 'flex';
});
But not how to get different *slider* statements into different columns. Because I’m using carry-forward and a randomized choice order, I cannot split the sliders into different questions.
Any help would be much appreciated!