Processes incoming requests.

1
2
3
4
5
6
7
8
9
10
const Http = new XMLHttpRequest();
Http.open("GET", url);
Http.send();
 
Http.onreadystatechange = function(){
    if(this.readyState==4 && this.status==200){
        console.log(Http.responseText)
    }
}

Contact me.

I would love to hear from you, send me a message using the form below.

    ×