<html>
<body>
<h2>Об’єкт XMLHttpRequest</h2>
<p id="demo">Нехай AJAX змінить цей текст.</p>
<button type="button" onclick="loadDoc()">Змінити вміст</button>
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.open("GET", "ajax_info.txt", false);
xhttp.send();
document.getElementById("demo").innerHTML = xhttp.responseText;
}
</script>
</body>
</html>