Media Validation | XM Community
Skip to main content
Solved

Media Validation

  • January 13, 2022
  • 2 replies
  • 115 views

Forum|alt.badge.img

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

Best answer by Rudi

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

View original

2 replies

Rudi
QPN Level 3 ●●●
Forum|alt.badge.img+16
  • QPN Level 3 ●●●
  • 162 replies
  • Answer
  • January 13, 2022

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


Forum|alt.badge.img
  • Author
  • 1 reply
  • January 14, 2022

Thank you so much 😃


Leave a Reply