I\'m having problems redirecting the user to a thank you page after a successful form completion. What happens is that after the form submits, it goes to a blank page (https://c
There are two way to redirect user after successful form post.
1) You can put a on Success event in ajax submission in which you can simply redirect user to thankyou page.
2) Use a server side function after your form post processing done For Ex in PHP:
header("Location: http://thankyoupage.html");