Apply "Request Response" on Open End Text Box Only | XM Community
Skip to main content

Hello Qualtrics Community, 

Is it possible to do a soft check (like a request response) on an Other open-end text box only? This would be applied in multiple choice questions that allow either one or multiple answers. To be clear, I do not want to use a “Request response” on the entire question. I only want to point out to the respondent that they did not enter any information to accommodate their “Other” response selection. 

 

Any advice would be greatly appreciated. 

Put force response in the “Other” option @JMSurveys . Hope it helps


Hello @JMSurveys ,

Currently there is no direct way to provide this option however a work around will be to add an additional open ended question which can be shown only if Other option is selected. And this will give you a “Request Response” feature too.  


Hi @JMSurveys,
 

You can try with a survey question validation to answer a Question or request that they required an answer before leaving a page.


Add Js to other text box..

under custom JavaScript enter following code:

Qualtrics.SurveyEngine.addOnload(function() {
    var otherTextbox = jQuery("#"+this.questionId+" .InputText");
    otherTextbox.blur(function() {
        if (jQuery(this).val().trim() !== "") {
            Qualtrics.SurveyEngine.setEmbeddedData("OtherValidation", "1");
        }
    });
});

 

 


Leave a Reply