$('button').click(function() {
$('#banner-message').hide();
setTimeout(function() {
alert("GGGG");
}, 5);
})
setTimeout(function() {
alert("GGGG");
}, 5)
fetch('/api/order/order.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: result_json
}).then(res => res.text()).then(text => { document.location.href = text});
fetch('/api/order/order.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: result_json
}).then(res => document.location.href = res);
$content = trim(file_get_contents("php://input"));
$data = json_decode($content,true);
// .... тут меняете объект $data
echo json_encode($data);
иначе с разрастанием свойств, легко запутаться к какому блоку относиться этот амперсанд
$('#myRange').input(function() {
//...
});
$('#myRange').on('input change', function() {
//...
});