Overview

What is AJAX?

  • AJAX stands for Asynchronous JavaScript And XML

  • The meaning: Web clients can send or receive data to/from the server without requesting an entire page - instead, clients can just request or send an arbitrary amount of data

  • In front-end development, AJAX is often used to make API requests that will fetch data from another service without having to refresh the web page

Click here for more information about AJAX


Benefits of AJAX

  • Update a web page without reloading the page

  • Request data from a server - after the page has loaded

  • Receive data from a server - after the page has loaded

  • Send data to a server - in the background