Adding a 'DK/DA' option into a 0-10 scaled question | XM Community
Solved

Adding a 'DK/DA' option into a 0-10 scaled question

  • 18 December 2023
  • 11 replies
  • 87 views

Userlevel 3
Badge +6

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! 

icon

Best answer by Deepak 18 December 2023, 15:39

View original

11 replies

Userlevel 7
Badge +36

@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'));

});

 

Userlevel 3
Badge +6

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

Userlevel 7
Badge +36

@VictorAV Do you have any illustration of what you’re looking for?

Userlevel 3
Badge +6

@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!

Userlevel 7
Badge +36

@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.

Userlevel 3
Badge +6

Thanks for all your support @Deepak 

Userlevel 7
Badge +36

@VictorAV 

I believe you marked wrong comment as best answer

Userlevel 3
Badge +6

yes, and don’t know how to edit

Userlevel 7
Badge +36

@AmaraW 

Can you help here?

Userlevel 7
Badge +20

@Deepak The Best Answer should be fixed now! Please let me know if it is correct, or if another comment should be marked. 🙂

Userlevel 3
Badge +6

@JoseS yes, that’s correct, thanks! 😀

Leave a Reply