Answers for "how to make get call using ajax"

1

javascript ajax get

const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
    document.getElementById("demo").innerHTML = this.responseText;
}
xhttp.open("GET", URL);
xhttp.send();
Posted by: Guest on August-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language