Next button disappearing - how do I stop this? | XM Community
Skip to main content

Next button disappearing - how do I stop this?

  • May 27, 2021
  • 1 reply
  • 102 views

I have the following code to show "NextButton":
Qualtrics.SurveyEngine.addOnload(function()
{
});
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#NextButton").show();
});
Qualtrics.SurveyEngine.addOnUnload(function()
{
});
When I add the Force Response requirement, and do not answer, it reminds me as expected, then I answer, but the "Next" button disappears so that I can't move on. Is there a way to stop this happening?

1 reply

Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • May 27, 2021

You really don't need to hide the next button when you have force response enabled.
Your code doesn't have anything to hide the next button, so can't comment why it's being hidden.