πŸŽ‰ New: Top 75 PHP Interview Questions for 2026 β€” Free for all learners
Beginner ⏱ min read πŸ”„ Updated
Home β€Ί

Advertisement

AJAX Technologies

As was already said, ajax is not a single technology but a group of technologies that work together. Some AJAX technologies are:

  • CSS and HTML/XHTML
  • DOM
  • XML or JSON
  • XMLHttpRequest
  • JavaScript

CSS and HTML/XHTML

The content and style are shown with the help of these technologies. It is mostly used for showing off.

DOM

It is used to display and interact with data in real time.

XML or JSON

to move data to and from the server. JSON, or Javascript Object Notation, is similar to XML, but it is shorter and runs faster.

XMLHttpRequest

For client-server communication that doesn’t happen at the same time. For more visit next page.

JavaScript

It’s used to connect the above technologies.

It is mostly used for client-side validation when it is used on its own.

# Summary

Here is what you've learned in this lesson:

  • AJAX Technologies
πŸš€
Next up: Synchronous vs Asynchronous – AJAX

Continue to the next lesson and learn more about Synchronous vs Asynchronous – AJAX.

Start Next Lesson β†’

← Previous Post
Synchronous vs Asynchronous - AJAX
Next Post β†’
How AJAX works?