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
The follow code worked for me, in a complete different context of the OP:
$(document).ready(function() { window.location.href = "URL"; });