Skip to content

Instantly share code, notes, and snippets.

@mattbloomfield
Created July 12, 2018 02:29
Show Gist options
  • Select an option

  • Save mattbloomfield/4cbedb3972aeb5ec0169fd6f24e6af51 to your computer and use it in GitHub Desktop.

Select an option

Save mattbloomfield/4cbedb3972aeb5ec0169fd6f24e6af51 to your computer and use it in GitHub Desktop.
Qualtrics.SurveyEngine.addOnload(function () {
this.questionclick = function(event,element) {
if (element.type == 'radio') {
var el = document.getElementById(element.id);
var parent = el.parentElement;
var img = parent.querySelector('span img');
Qualtrics.SurveyEngine.setEmbeddedData('Winner', img.id);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment