For unbounce, I want to send a user to different thank you page based on the what they select. I added the script below but it isn't working.
Could you please let me know what I am doing wrong ? Thanks for any help!
<script>
$("#lp-pom-form-501").on('click', function(){
switch ($("#number_of_providers")){
case "#1-2":
window.open("http://google.com");
break;
case "#3-4":
window.open("http://yahoo.com");
break;
default:
break;
}
});
</script>
Be sure to first change your form's confirmation to 'Goto another thankyou page' and set a default fallback URL
Set this script to 'before body end tag'
Modify or add as many different 'cases' as you need