var msg;
msg = serialize(document.querySelector('form'));
var xhr = new XMLHttpRequest();
// 2. Конфигурируем его: POST-запрос на URL 'mail.php'
xhr.open('POST', 'mail.php', true);
xhr.addEventListener('load', function() {
if (xhr.status != 200) {
// обработать ошибку
alert( xhr.status + ': ' + xhr.statusText ); // пример вывода: 404: Not Found
} else {
document.querySelector('.form__content').style.display = 'none';
document.querySelector('.form-successful').style.display = 'block';
}
});
xhr.send(msg);
console.log(msg);