javascript

Working With XMLHttpRequest

The XMLHttpRequest is a Javascript object that is used to interact with web servers.

The XMLHttpRequest() is a Javascript function that makes it possible for developers to fetch XML data from the database without reloading the entire page.

Now, XMLHttpRequest is not just limited to XML alone. It can be used to retrieve any type of data, especially from an API.

Let us see an example of how it works.

let xhr = new XMLHttpRequest(); //Invoke an instance
xhr.onload = success; //call success function
xhr.onerror = error; //call error function
xhr.open('GET',' fetch('https://api.github.com/repos/javascript-tutorial/en.javascript.info/commits'); //initiate a request
xhr.send(); //send the request

//Handle success
function success(){
let data = JSON.parse(this.responseText);
console.log(data);
}

//Handle error
function error(err){
console.log(`Request failed: ${err}`);
}

Result:

Recent Posts

How Keyloggers Work

A keylogger is a type of surveillance software or hardware that records every keystroke made…

6 days ago

JavaScript Memoization

In JavaScript, it’s commonly used for: Recursive functions (like Fibonacci) Heavy calculations Repeated API/data processing…

4 weeks ago

CSS Container Queries: Responsive Design That Actually Makes Sense

For years, responsive design has depended almost entirely on media queries. We ask questions like: “If…

4 weeks ago

Cron Jobs & Task Scheduling

1. What is Task Scheduling? Task scheduling is the process of automatically running commands, scripts,…

4 weeks ago

Differences Between a Website and a Web App

Here’s a comprehensive, clear differentiation between a Website and a Web App, from purpose all the…

1 month ago

Essential VS Code Extensions Every Developer Should Use

Visual Studio Code (VS Code) is powerful out of the box, but its real strength…

2 months ago