Hello! I appreciate you checking out my post.
I want to make multiple choice questions which, once a participant clicks their answer, can't be changed (since I want their first instinctive response rather than after they have second-guessed it). Is this lock-in-first-answer situation possible with Javascript code?
Thank you very much!
Solved
Lock in first answer for multiple choice questions?
Best answer by TomG
Yes:
Qualtrics.SurveyEngine.addOnload(function() {
var inputs = jQuery("#"+this.questionId+" input[type=radio]");
inputs.click(function() { inputs.prop("disabled",true); });
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
