Hi There,
I'm almost there, but I just cannot figure out the last part. I want to get the value from the embedded data field and let it select a multiple choice answer option for ONLY question: QID1215751872. The issue is that the below input jQuery works, but it then fills all questions on the page with answer code 1.
I just want to target that one QID. The bottom two jQuery's seem to not work. How can I target one QID and select a certain choice id?
1Qualtrics.SurveyEngine.addOnload(function () {2 var PullEmbData = Qualtrics.SurveyEngine.getEmbeddedData('Filter1');3 console.log("Answer is:" + PullEmbData)4 56 if (PullEmbData = 'PulledValue') {7 jQuery('input[choiceid=1]').prop('checked',true);8 };9 10 //jQuery('#' + this.questionId + 'input[choiceid=1]').prop('checked',true); 11 //jQuery('#QID1215751872 input[choiceid="1"]').prop('checked', true)1213});Many thanks!
