Adding a 'DK/DA' option into a 0-10 scaled question
Hi Qualtrics team.
I want to make a nice looking question on a horizontal 0-10-scale + a ‘I don't use it’ category.
If I include this ‘I don’t use it’ option at the end it does not look very well as the text is long.
Would it be possible to include these ‘I dont’ use it option’ at the bottom of the question?
Thanks for your help!
Page 1 / 1
@VictorAV
Try using below code:
Qualtrics.SurveyEngine.addOnload(function() { /*Place your JavaScript here to run when the page loads*/ jQuery('.ChoiceStructure').append(jQuery('.LabelContainer:last'));
});
Thanks @Deepak, this is how it shows:
Do you know if there is another approach to do it better without asking 2 separate questions? Thanks
@VictorAV Do you have any illustration of what you’re looking for?
@Deepak in the code I’ve entered maybe it’d be possible to distinguish better this ‘I don’t use...’ option, for instance, by making the grey background different or delete it. Something like that by working with the layout.
With ‘another’ approach I want to know if it can be used other type of question to do it.
Thanks!
@VictorAV
You can use CSS like background-color as mentioned below. jQuery('.LabelContainer:last').css('background-color', '#000');
If you want to use other question type which has not applicable option try using slider type.
Thanks for all your support @Deepak
@VictorAV
I believe you marked wrong comment as best answer
yes, and don’t know how to edit
@AmaraW
Can you help here?
@Deepak The Best Answer should be fixed now! Please let me know if it is correct, or if another comment should be marked.