I am using a 5 point likert scale in a matrix table and am adding 6th option: 'don't know'. I would like to set the 6th option apart from the rest with a wider spacing. Is there a way I can do this?
Page 1 / 1
An alternative to a wider space is adding a vertical line to separate the Don't Know option.
Qualtrics.SurveyEngine.addOnload(function() {
var jfe = false;
if(/^\\/jfe/.test(window.location.pathname)) jfe = true;
var q = jQuery("#"+this.questionId);
var cl = q.find('td.ColumnLabels:first');
if(cl.length > 0) cl.attr('colspan', cl.attr('colspan') - 1);
if(!jfe || (jfe && q.find('div.desktop').length > 0)) q.find('.last').css("border-left", "1px solid #BBBBBB");
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.