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
Try:
$('#theForm').ajaxForm(function() { success : function(){ window.location.href = "Url to redirect here in the success option"; } });