кто то может наглядно показать пример отправления пост рекеста, просто у меня не работает или неправильно пишу
вот мой код:
const buttonGetInfo = document.querySelector('[type="button"]');
buttonGetInfo.addEventListener('mouseup', function () {
const xhr = new XMLHttpRequest();
const responseType = 'text';
xhr.open('POST', 'xmlData.html', true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
document.write(`${xhr.response} <br>`);
document.write(xhr.responseText);
}
}
xhr.send('string');
})
};