<!DOCTYPE html>
<html>
<body>
<h2>Об’єкт XMLHttpRequest</h2>
<h3>Почніть вводити ім’я в полі введення нижче:</h3>
<p>Пропозиції: <span id="txtHint"></span></p>
<p>Ім’я: <input type="text" id="txt1" onkeyup="showHint(this.value)"></p>
<script>
function showHint(str) {
if (str.length == 0) {
document.getElementById("txtHint").innerHTML = "";
return;
}
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
document.getElementById("txtHint").innerHTML =
this.responseText;
}
xhttp.open("GET", "gethint.asp?q="+str);
xhttp.send();
}
</script>
</body>
</html>