Can't enter the next question | XM Community
Skip to main content
Solved

Can't enter the next question

  • May 31, 2019
  • 2 replies
  • 12 views

Forum|alt.badge.img+3
I want the respondent to click "here" to download a file, but I am afraid that they will not click this hyperlink and click "next" to go directly to the next question. Is there any way to solve this problem? ! thanks a lot

Best answer by Anonymous

Hello @Cathaya , Paste the below code in the JS(OnReady) of the descriptive question jQuery("#NextButton").hide(); jQuery("a").on('click',function(){ jQuery("#NextButton").click(); }); The above code will hide the next button and on click of hyperlink it will move to next question, so you need to change the descriptive text as click here to download your selection and move forward or on similar line.

2 replies

Forum|alt.badge.img+19
  • Level 5 ●●●●●
  • May 31, 2019
You'll need some coding know how, but this should help: https://www.qualtrics.com/community/discussion/4549/hiding-next-button-until-link-click

  • Answer
  • May 31, 2019
Hello @Cathaya , Paste the below code in the JS(OnReady) of the descriptive question jQuery("#NextButton").hide(); jQuery("a").on('click',function(){ jQuery("#NextButton").click(); }); The above code will hide the next button and on click of hyperlink it will move to next question, so you need to change the descriptive text as click here to download your selection and move forward or on similar line.