AJAX Technologies

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.

Related Posts
AJAX & PHP

What exactly is AJAX? AJAX is an acronym for Asynchronous JavaScript and XML. With the help of XML, HTML, CSS, Read more

PHP – AJAX Introduction

With AJAX, you can change parts of a web page without having to load the whole page again. The letters Read more

AJAX and MySQL – PHP

In this example, we are talking to the database. You don\'t need to do anything else. Just write the logic 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

What is AJAX

Describe AJAX. AJAX = JavaScript and XML that run in parallel. AJAX is a way to make web pages that 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

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

Scroll to Top