Dear user,
Actually, we can advise a custom solution for you that may work for your case.
Please follow the steps below:
This Javascript we have written for Select field type, but you can apply it to other select type fields like multiple choice, etc.
Please Add a hidden field to your form, for this please enter Add field > Advanced > Hidden Input, please add the field and as field name write myhidden.
Now we should write a JavaScript code to give redirect URL to your hidden input field, please note that it is important to write the URL without http/https.
For this please enter form > settings > javascript
Let me remind you that this function is written for select field type.
So here in before_submit function you should give links to the option values.
if(jQuery(" select field id").val() == "option 1"){
jQuery("input[name='myhidden']").val("google.com");
}
else if(jQuery("select field id").val() == "option 2"){
jQuery("input[name='myhidden']").val("google.com");
}
Please note, that here for select field id should be written your select field ID.
for option 1 and option 2 should be written your select field option values.
Instead of google.com and facebook.com should be written your redirect URLs.
Now you should enter Actions after submission section > Select Custom Text , choose text format of editing window and write the below script.
<script>window.location.href = "http://{your field id}"</script>
Here instead of your field id, please select your hidden field ID by clicking on the placeholder (the button above Text, please click then choose form fields, and then choose hidden input).
Hope this solution will help you.