Powered by Tech-Attacks

AJAX Basics - Introduction to AJAX

AJAX Basics - Introduction to AJAX - http://techattacks4u.blogspot.in/AJAX stands for Asynchronous JavaScript and XML.
AJAX is not a new programming language, but a new way to use existing standards.
AJAX is the art of exchanging data with a server, and updating parts of a web page - without reloading the whole page.
AJAX is all about updating parts of a web page, without reloading the whole page.

What You Should Already Know
Before you continue you should have a basic understanding of the following:
- HTML
- CSS
- JavaScript

- jQuery.



What is AJAX?

AJAX = Asynchronous JavaScript and XML.
AJAX is a technique for creating fast and dynamic web pages.
AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
Classic web pages, (which do not use AJAX) must reload the entire page if the content should change.
Examples of applications using AJAX: Google Maps, Gmail, Youtube, Facebook tabs, etc.

How AJAX Works
AJAX Basics - Introduction to AJAX - http://techattacks4u.blogspot.in/

AJAX is Based on Internet Standards
AJAX is based on internet standards, and uses a combination of:

- XMLHttpRequest object (to exchange data asynchronously with a server)
- JavaScript/DOM (to display/interact with the information)
- CSS (to style the data)
- XML (often used as the format for transferring data)
AJAX applications are browser and platform-independent.

AJAX was made popular in 2005 by Google, with Google Suggest.
Google Suggest is using AJAX to create a very dynamic web interface: When you start typing in Google's search box, a JavaScript sends the letters off to a server and the server returns a list of suggestions.

No comments:

Post a Comment