Media Validation | XM Community
Skip to main content

I am conducting a study in which I require my participants to watch a 5-minute video (linked from YouTube). Is there anyway to add a validation to this so they cannot progress unless they have watched the entire video? Or, at the very least, have the survey display a message when they try to move forward, where I can remind them they need to watch the full 5 minutes?
Many thanks,

Sam

Hi,

you could hide the next button for 5 minutes:

Qualtrics.SurveyEngine.addOnload(function()
{
this.hideNextButton()
  
  setTimeout(function() { jQuery("#NextButton").show(); },5000);

});

Please mind that the 5000 are milliseconds so you need to adjust this to your needs
However, it's worth considering if you really would like to force respondents to watch 5 minutes ;-)
Some might just close the survey

Best regards

Rudi


Thank you so much 😃


Leave a Reply