Kiosk Mode

Kiosk Mode is helpful when you have multiple people taking your survey from the same device. When in Kiosk Mode, once the respondent clicks submit, the survey will delay for the decided amount of time on a success screen before returning to the beginning of the survey. This allows for the next respondent to quickly and easily be able to begin the survey without having to click the link for it or for anyone to be monitoring the device.

To put a survey in Kiosk Mode follow the steps below:

  1. Click 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 will see the success screen (default is 10 seconds).
  3. Click Save Options.
  4. Click on General Settings and make sure the Prevent multiple submissions from the same device is unchecked or the survey will become unavailable after it has been taken for the first time.
  5. Click Save Options.

If you you'd like to redirect your survey Participants to a custom landing page on your own site before returning to your survey just copy the snippet below 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 )