Code for hiding matrix table labels | XM Community
Skip to main content

Does anyone know how to hide the scale labels for a matrix table (without eliminating the choices themselves)? the goal is to make it appear to the survey respondent like these items are a continuation of the prior question,  which has the same scale, without a break] 

 

Just delete the characters and leave a space. 


Hi,

Qualtrics.SurveyEngine.addOnReady(function()
{

jQuery('#' + this.questionId + ' th[role="columnheader"]').css('display', 'none');

});

 


Hi,

Qualtrics.SurveyEngine.addOnReady(function()
{

jQuery('#' + this.questionId + ' th[role="columnheader"]').css('display', 'none');

});

 

That works perfectly. Very, very helpful.  Thank you!!


Leave a Reply