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
Your success callback syntax is incorrect. It should rather be:
$('#theForm').ajaxForm(function() { window.location.href = "/path/to/thankyoupage"; });
Also, note that it is window.location.href and not location.window.href
window.location.href
location.window.href