Answers for "xhr request to the api"

0

xhr request

var url = "https://example.com/";

var xhr = new XMLHttpRequest();
xhr.open("GET", url);

xhr.onreadystatechange = function () {
   if (xhr.readyState === 4) {
      console.log(xhr.status);
      console.log(xhr.responseText);
   }};

xhr.send();
Posted by: Guest on June-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language