I'd like to reset the user input of radio buttons from outside the question. Based on the examples I found (https://www.qualtrics.com/community/discussion/1387/deselecting-a-radio-button) I though it would work if I just reference the other question with its QID in Qualtrics.SurveyEngine.registry[qid].setChoiceValue(5, 1, false). However it never works. So I do I properly reference another question?
The reset function looks like this.
```javascript
function Reset() {
$(questionid="QID2").hide();
for (var i = 1; i < 4; i++) {
$(questionid="QID2").setChoiceValue(i, false);
}
}
```
QID2 is the question I want to modify. The $(questionid="QID2").hide(); by it self works total fine. Only the .setChoiceValue doesn't work