Align form text entry box | XM Community
Skip to main content
I am running into a problem where I cannot figure out how to switch my text box answer and text. My question on the survey is a form text box. My choice currently reads:



Times in the past 30 days [______]



but I want it to look like:



[_______] Times in the past 30 days.
Check out this discussion: https://www.qualtrics.com/community/discussion/3194/text-entry-form-adding-unique-static-text-following-text-entry-box

``var inputs = $(this.getQuestionContainer()).select('input[type="text"]');

var input = inputs[0];

$(input).insert({after: 'text1'});

var input = inputs[1];

$(input).insert({after: 'text2'});``

Leave a Reply