What is AJAX

Describe AJAX.

AJAX = JavaScript and XML that run in parallel.

AJAX is a way to make web pages that load quickly and change all the time.

AJAX lets small amounts of data be sent back and forth between the server and the web page in the background. This lets web pages be updated at different times. This means that parts of a web page can be changed without having to reload the whole page.

Traditional web pages that don\’t use AJAX have to reload the whole page when the content changes.

Google Maps, Gmail, YouTube, and the tabs on Facebook are all examples of applications that use AJAX.

 

What is it used for?

Too many web apps, like Gmail, Facebook, Twitter, Google Maps, YouTube, etc., use ajax technology.

 

AJAX is Based on Internet Standards

AJAX is based on the standards of the internet and uses a mix of:

XMLHttpRequest object (to exchange data asynchronously with a server)
JavaScript/DOM (to show the information and interact with it)
CSS (to style the data) (to style the data)
XML (often used as the format for transferring data) (often used as the format for transferring data)

AJAX applications work on any browser or platform.

Related Article
AJAX & PHP

10 Powerful and Interactive AJAX & PHP Techniques to Build Fast Web Apps AJAX & PHP together enable developers to Read more

PHP AJAX Introduction Tutorial

PHP – AJAX Introduction Complete Beginner Tutorial Modern websites are expected to be fast, interactive, and dynamic. Reloading the entire Read more

AJAX and MySQL with PHP – Dynamic Database Operations Tutorial

AJAX and MySQL – PHP Complete Beginner Tutorial Combining AJAX, PHP, and MySQL allows you to build fast, interactive, and Read more

AJAX XMLHttpRequest

Getting to know XMLHttpRequest Properties of XMLHttpRequest XMLHttpRequest Methods of XMLHttpRequest An object of XMLHttpRequest is used for communication between Read more

Synchronous vs Asynchronous – AJAX

The difference between synchronous and asynchronous Let\'s learn about the classic web application model and the ajax web application model Read more

AJAX Technologies

AJAX Technologies As was already said, ajax is not a single technology but a group of technologies that work together. Read more

How AJAX works?

The XMLHttpRequest object is how AJAX talks to the server. Let\'s look at the picture below to try to figure Read more

PHP Example – AJAX and XML Tutorial

PHP Example – AJAX and XML Complete Tutorial Before JSON became popular, XML was the most commonly used format for Read more