Hi All,
Is it possible to code a yes or no question to record a no if the respondent leaves it blank?
It is an option question multi choice.
Hi All,
Is it possible to code a yes or no question to record a no if the respondent leaves it blank?
It is an option question multi choice.
Best answer by TomG
You could use JS to select ‘No’ if nothing is selected when Next is clicked (‘No’ is choiceid 2):
Qualtrics.SurveyEngine.addOnPageSubmit(function() {
var q = jQuery(this.questionContainer);
if(q.find("input:checked").length==0) q.find("[choiceid=2]").prop("checked",true);
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.