How to insert column name in side by side | XM Community
Skip to main content

How to insert column name in side by side

  • December 2, 2022
  • 1 reply
  • 37 views

Forum|alt.badge.img+2

Hi Community,
I'm trying to work with side-by-side column name.
image.png

1 reply

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • December 2, 2022

ricsdpl
You can include the below in JS onload, change header with text you need.
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
jQuery('#'+this.questionId).find('td.c1')[0].innerText='Header';
});
Hope it helps!