-
Be sure to first change your forms confirmation to 'Goto another webpage' and set a default fallback URL
-
Drop this script into your javascript box. Set the placement to 'before body end tag'
<script>
$("#gender").live('change', function() {
switch ($(this).val()) {
case 'Male':
window.module.lp.form.data.confirmData = "http://www.google.com";
break;
case 'Female':
window.module.lp.form.data.confirmData = "http://www.bing.com";
break;
}
});
</script>
-
Replace 'gender' with the ID of your dropdown field.
-
Modify or add as many different 'cases' as you need
FYI Unbounce seemed to have changed their object structure, this now needs to be:
window.module.lp.form.data.url = "http://www.google.com";