We set up a 103 question survey and the respondent is getting this response when trying to click forward "You have added text into a unselected answer choice. Please select the answer choice or remove the text" and he cannot move forward in the survey!
I am going to make the assumption that he did not select the button next to the "other" with the text box in the multiple choice. But before I make that assumption, I wasn't sure if anyone had this issue?
Thank you!!!!
Solved
HELP! Respondent having an issue with the survey...
Best answer by ahmedA
BusyBee100
Try this:
Qualtrics.SurveyEngine.addOnReady(function () {
const qc = this.questionContainer,
ip = qc.querySelector(".InputText");
this.questionclick = function () {
setTimeout(() => {
ip.ancestors().forEach((item) => {
if (item.className.includes("Selection")) {
let ch = item.querySelector(".q-radio, .q-checkbox");
if (!ch.className.includes("checked")) ip.clear();
}
});
}, 50);
};
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
