function ds() {onscroll = function() {return false;}}бургер.addEventListener('click', ds)бургер.removeEventListener('click', ds);
client.onreadystatechange = function() {
if(this.readyState == this.HEADERS_RECEIVED) {
console.log(client.getResponseHeader("Content-Type"));
}
}client.onreadystatechange = function() {
if(this.readyState == 4) {
console.log(client.getResponseHeader("Content-Type"));
}
}