Can't enter the next question | XM Community
Solved

Can't enter the next question


Userlevel 2
Badge +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
icon

Best answer by Anonymous 31 May 2019, 17:59

View original

2 replies

Userlevel 7
Badge +19
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