Jscript to format form boxes | XM Community
Solved

Jscript to format form boxes

  • 30 July 2021
  • 2 replies
  • 22 views

Userlevel 2
Badge

Does anyone know the Jscript needed to move the form essay boxes to be below the form label?

icon

Best answer by ChiragK 4 August 2021, 10:45

View original

2 replies

Badge +8

Hello, Try adding this JS code in form field question.
Qualtrics.SurveyEngine.addOnReady(function () {
    var $this = jQuery(this.questionContainer);
    jQuery(".QuestionBody td.ControlContainer", $this).css({"float": "left", "width": "100%"}).closest("tr").css({"display": "block", "margin-top": "15px"});
});

Userlevel 2
Badge

Thank you so much. This is exactly what I needed.

Leave a Reply