Can't enter the next question | XM Community
Skip to main content
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
You'll need some coding know how, but this should help:

https://www.qualtrics.com/community/discussion/4549/hiding-next-button-until-link-click
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.

Leave a Reply