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 to Create Neumorphism Effect with CSS

Neumorphism design, alternatively termed as "soft UI" or "new skeuomorphism," represents a design trend that…

2 days ago

How to Debug Your JavaScript Code

Debugging JavaScript code can sometimes be challenging, but with the right practices and tools, you…

5 days ago

Service Workers in JavaScript: An In-Depth Guide

Service Workers are one of the core features of modern web applications, offering powerful capabilities…

2 weeks ago

What are Database Driven Websites?

A database-driven website is a dynamic site that utilizes a database to store and manage…

3 weeks ago

How to show Toast Messages in React

Toasts are user interface elements commonly used in software applications, especially in mobile app development…

3 weeks ago

Exploring the Relationship Between JavaScript and Node.js

JavaScript has long been synonymous with frontend web development, powering interactive and dynamic user interfaces…

4 weeks ago