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);
});
});