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.
Page 1 / 1
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'});``
``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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.