Last updated: Dec 7, 2021

JS AJAX

Ajax stands for Asynchronous Javascript And Xml. Ajax is just a means of loading data from the server and selectively updating parts of a web page without reloading the whole page. Ajax make use of the browser's built-in XMLHttpRequest (XHR) object to send and receive information to and from a web server asynchronously, in the background, without blocking the page or interfering with the user's experience.
AJAX introduction
In this article we will be discussing the introduction to AJAX, what are the modern browsers, and finally how we can work with AJAX and some frequently asked questions.
AJAX - The XMLHttpRequest Object MEDIUM
This blog contains information about the XMLHttpRequest object, its properties, and its methods.
JS Ajax Request
This article briefly describes the Javascript AJAX request, and we will cover what AJAX is and how to implement it.