$('.js-money-button').on('click', function () {
var sum = 0;
if (!!slider) {
sum = slider.noUiSlider.get();
}
$.ajax({
url: '/ajax/handler.php',
type: 'post',
dataType: 'json',
data: {action: 'set_user_sum', sum: sum},
success: function (data) {
console.log(data);
if (data.IS_OK == 'Y') {
//alert('OK');
window.open('./step');
setTimeout(() => { window.location = "./vitrina"; }, 500);
} else {
alert('ошибка: ' + data.msg);
}
},
error: function () {
alert('send_ajax error, action=' + data.action);
},
complete: function () {
}
});
/*
window.open('./step')
setTimeout(() => {
window.location = "./vitrina";
}, 500);
*/
});
<button onclick="new_window = window.open('./step');">Кликни меня</button>
new_window.document.write('Тест, проверка!');
new_window.document.close();
new_window.document.location.href = '/tuda_kuda_nado';