How to get the answers

Imagine you have these two slides and you need to get the answers:

The first thing you need to do is get each answer and field IDs from the IDs section:

Now you can enter the following code in the slide JavaScript section:

var isFlat = Extension.isSelectedOption(102, slides, history);
var isFlat = Extension.isSelectedOption(103, slides, history);
var name = Extension.getFormResponse(115, slides, 1, history);
var email = Extension.getFormResponse(115, slides, 2, history);

Last updated