Jscript to format form boxes | XM Community
Skip to main content

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

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"});
});


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


Leave a Reply