Hi, for example I want to redirect the page depending on entered values in the form.
If the customer enters high value (>2000) in form, then it goes to URL1.
If the customer enters medium value (>=1000) in form, then it goes to URL2.
If the customer enters low value (<1000) in form, then it goes to URL3.
I tried to do it with javascript, jquery to get those values by id, then use if logic to control URL redirect
$(’#clickmebind’).bind(“click”, function(){ })
but once all values are entered, it will always go to the URL you entered for form confirmation. Is there anyway to disable that form confirmation or does unbounce provide better resolutions?
Thanks in advanced.