Uncheck radio button in side by side SBS question | Experience Community
Skip to main content

Uncheck radio button in side by side SBS question

  • June 4, 2026
  • 0 replies
  • 12 views

Forum|alt.badge.img+2

Is there a way to unselect radio button in a side by side question.

 

I have the following code but it only works for simple multiple select and matrix.

Qualtrics.SurveyEngine.addOnload(function() {
qobj = this;
jQuery(qobj.questionContainer).find("input[type=radio]").click(function() {
var [qr, qid, cid, aid] = this.id.split("~");
if(qobj.getSelectedAnswerValue(cid)==aid) qobj.setChoiceAnswerValue(cid,aid,false);
});
});