For questions where it makes sense (e.g. single choice questions), I would like to automatically forward to the next question to make the survey faster.
I believe this should work with JavaScript.
Has anyone already written some code that works for this purpose and could help me with this?
Thanks a lot!
Anna
https://www.qualtrics.com/community/discussion/556/auto-advance
`setTimeout(function () {jQuery('#NextButton').click();},2000);`
Does anyone else have an idea of how to solve this without a time out?
https://www.qualtrics.com/community/discussion/14/how-to-set-auto-advance-on-my-survey
if(jQuery('input[type="radio"]').is(':checked')){jQuery('#NextButton').click();}
};`
Only works if the question is the only one on page and on single select question
The following solution will work for single select answer and the only question in page
Add the following code in the js(OnReady)
jQuery('input[type="radio"]').on('click',function(){jQuery('#NextButton').click();});
If that doesn't work out, I have a JavaScript you can contact me about. It automatically goes to the next page when the last question on a page is answered. The script can be placed in the header or footer and works on any page where the last question is Multiple Choice (Single answer, Drop down, Single select box, or NPS), Matrix (Likert single answer, Profile single answer, Bipolar, MaxDiff, Likert drop down or Profile drop down), or Rank Order (Radio Buttons).
Hi @TomG
In this discussion, you mentioned that you have Javascript code. Can you share with me the Javascript code where I can post in header recourse code<>? Really appreciated! The last question on every page is multiple choices with a single answer. The reason I need the Javascript code instead of checking the auto button in Look & Feel is that I want to have this automatic function within certain blocks but not in other blocks. So I will write something like the following in the header recourse code:
if("${e://Field/enableautopage}"==1)
your Javascript code here
Pei_2009 - I answered your private message.
TomG - The new auto-advance feature is awesome! However, it's not working for me with all of my question types, specifically star rating and free text. Would the JS you mentioned worked for these type of questions?
https://www.qualtrics.com/community/discussion/comment/36173#Comment_36173No, it could be done but it creates usability issues that may be counterproductive. You risk catching respondents unawares and advancing before they are ready. That's probably the reason Qualtrics auto-advance doesn't work with these question types.
Ok, thanks for the quick response. I appreciate it!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.