API Reference

Redirect to Custom URL after quiz, based on answers

Redirect user to custom URL after quiz

Add this function to "Custom JS function to execute before Quiz finish" in Quiz settings


function(){
  if (window.answers.gender == '')
  	location.href = '/paywall/1';
  else 
    location.href = '/paywall/2';
}