После отправки формы редиректит на
https://app.getresponse.com/send_confirmation_mail...
Как сделать, чтобы редиректило туда, куда нужно?
$('.fixed-form-magnet form').on('submit', function(){
var form_data = $(this).serialize(); //собираем все данные из формы
$.ajax({
type: "GET", //Метод отправки
url: '
https://app.getresponse.com/add_subscriber.html', //путь до php файла отправителя
data: form_data,
dataType: "jsonp",
xhrFields: {
withCredentials: true,
},
success: function(result) {
setTimeout(function(){
$('.fixed-form-magnet, .fotm-success').removeClass('active')
},3000);
},
error: function(jqXHR, textStatus, errorThrown){
console.log(jqXHR)
console.log('----------')
console.log( textStatus)
console.log('----------')
console.log( errorThrown)
}
});
$('.fotm-success').addClass('active');
return false;
})