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