$.ajax({
url: 'your_url_here',
type: 'GET', // Или другой метод запроса
success: function(data) {
$(".overlay-schema").animate({ "opacity": "0" }, 100, function () {
$(this).remove();
$("body").append(data);
$(".overlay-schema").animate({ "opacity": "1" }, 100);
});
},
error: function(xhr, status, error) {
console.error('AJAX request failed:', status, error);
console.log('XHR:', xhr);
}
});
net::ERR_HTTP2_PROTOCOL_ERROR