Kiosk Mode

Kiosk Mode is helpful when you have multiple people taking your survey from the same device. When in Kiosk Mode, after the respondent selects submit, the survey delays for the specified amount of time on a success screen before returning to the beginning of the survey. This allows the next respondent to begin the survey without having to select the link or having anyone monitor the device.

To put a survey in Kiosk Mode, follow these steps:

  1. Select the kiosk link next to the Alternative Success URL. This puts the current survey URL in the input field, which makes the survey refresh instead of navigating to a different page.
  2. Add a delay so that your participants see the success screen (default is 10 seconds).
  3. Select Save Options.
  4. Select General Settings and make sure Prevent multiple submissions from the same device is unchecked, or the survey becomes unavailable after it’s taken for the first time.
  5. Select Save Options.

If you’d like to redirect your survey participants to a custom landing page on your own site before returning to your survey, copy the following snippet into your landing page.

// 1. enter your survey url here:
var surveyUrl = 'ENTER YOUR SURVEY URL HERE';

// 2. number of seconds before redirect
var delay = 10;

setTimeout(function () {
	window.location.href = surveyUrl;
}, delay * 1000);