This is an old revision of the document!
Table of Contents
autoAdvancePages - Go to next page when last question on page is answered
The autoAdvancePages function automatically clicks the next button when the last question on a page, excluding Metainfo and Timing questions, is answered. Unlike the Qualtrics AutoAdvance Page feature which only applies to the entire survey, autoAdvancePages can be configured to run on the entire survey, specific blocks, or specific pages. Also unlike the Qualtrics AutoAdvance page feature, autoAdvancePages does not require the back button.
autoAdvancePages will automatically advance to the next page when the last question on the page, excluding Metainfo and Timing questions, is one of the following:
- Multiple choice
- Single answer list
- Drop down
- Single answer select box
- Multi-answer with exclusive choices (when an exclusive choice is selected)
- NPS
- Matrix
- Likert single answer standard/profile
- Likert dropdown standard/profile
- Bipolar
- Maxdiff
- Rank Order
- Radio buttons
- Drill Down
This function is available for a reasonable fee. Contact TomG on the Qualtrics Community to learn more.
Set-up Instructions
Survey Header
Add autoAdvancePages Function
Add the autoAdvancePages JS function to the header. While still editing the survey header in html mode, add the provided function below the timer html:
<script> /*Paste autoAdvancePages function JS here*/ </script>
Run the autoAdvancePages Function
To run the autoAdvancePages timer add the autoAdvancePages function call to the Qualtrics addOnload function. While still editing the survey header in html mode, add the addOnload function inside the script tag added above:
<script>
/*Paste autoAdvancePages function JS here*/
Qualtrics.SurveyEngine.addOnload(function() {
autoAdvancePages("{${e://Field/autoAdvancePages}");
});
</script>
