HTTP request in Javascript

There are several ways to an HTTP request in JavaScript, but two of the most commonly used methods are the XMLHttpRequest object and the fetch() function.

#1. Using XMLHttpRequest object:

var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://example.com', true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
console.log(xhr.responseText);
}
};
xhr.send();

#2. Using fetch() function:

fetch('https://example.com')
.then(function(response) {
return response.text();
})
.then(function(text) {
console.log(text);
});

Both examples above make a GET request to https://example.com and log the response to the console. Keep in mind that fetch is not supported by older browsers.

READ ALSO: How to redirect HTTP to HTTPS | Force HTTPS Using htaccess

Does this article meet your immediate needs? If yes, leave us a 5-star rating in the Review Box below. However, if not, leave a comment in the comment box to express your concern or ask a question, and we will get back to you as soon as possible.

Remember to Share this Article with your friends on social media!! Doing this helps us improve and grow our channel and also enables us to help more people online. 
Thank You For Sharing!!!

Discover more from Detailed Guide Blog

Subscribe to get the latest posts sent to your email.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

You May Also Like
force HTTPS using htaccess

How to redirect HTTP to HTTPS | Force HTTPS Using htaccess

You need to force HTTPS using htaccess on your website. As a…
creative tools

How To Get Unlimited Creative Tools and Templates For Creators and Designers

Hello and welcome back to Detailed Guide, where we show you how…
bluehost review

Bluehost Review (Best Web Hosting For WordPress)

Finding a decent hosting plan and platform shouldn’t be too stressful. In…
Free Website Builders

15 Best Free Website Builders

Having a business website in today’s digital world isn’t an option. It’s…