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
Page 1 / 1
You'll need some coding know how, but this should help:
https://www.qualtrics.com/community/discussion/4549/hiding-next-button-until-link-click
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.
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.