So I have a survey where participants are shown a series of images in a slideshow. As the slideshow progresses, they have a like button below.
This like button is actually a question on Qualtrics. I have Javascript code to alter the question shown to the participant using in-page display logic.
This used to work fine. However, Qualtrics recently introduced an update that means that only pages that are actively shown to participants at the time they click the next page button are recorded.
To break it down, imagine the scenario where:
- Participant clicks on image 1.
- Qualtrics displays the like button for image 1.
- Participant clicks the like button. Like button shows as selected.
- Participant clicks on image 2.
- Like button for image 1 is hidden.
- Participant clicks on image 2.
- Like button for image 1 is shown again, still shows as selected.
- Participant clicks on image 2.
- Participant clicks submit button.
The data shows the like button for image 1 as never pressed.
Is there anyway I can use javascript to grab this clicking of the like button, perhaps setting it as embedded data when the user clicks it? I'm trying to think of any way that may work.
Thanks.