Hi All,
I have a javascript array of image links saved as an embedded data
"image_links". I would like to push each element in the array into a loop and merge field
(Field 1).
// to get image links from javascript array
img_links = Qualtrics.SurveyEngine.getEmbeddedData('img_links');
// push each array entry into a loop and merge field "${lm://Field/1}"
for (var num = 0; num < img_links.length; num++) {
// To do
}
The goal is to display the different images in each loop.