survey-multi-choice save selected answer #3413
Unanswered
AndreaVezzani
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I am aware I might be using an old code but I am adapting an old script of mine and I do not have the chance to update all of it.
I am using the survey-multi-choice plug in and I would like to save the selected answer but any option I try block the code.
Hope someone can help me
Many thanks
var trial = { type: "survey-multi-choice", questions: [ { prompt: '<img src="' + signA + '" alt="Sign A Image" style="width:500px; height:auto;"> <br> Please select your favorite vegetable from the options below:', // Added sentence name: 'VegetablesLike', options: ['Tomato', 'Cucumber', 'Eggplant', 'Corn', 'Peas'], required: true }], on_finish: function(data) { var responses = JSON.parse(data.responses); // var selectedAnswer = responses.VegetablesLike; }}; timeline.push(trial)
Beta Was this translation helpful? Give feedback.
All reactions