AJAX stands for Asynchronous JAvaScript and XML.
Why one should learn AJAX ?
AJAX is an art of exchanging data with a server and updating parts of a web page, without reloading the entire webpage.
How AJAX works in 3 steps?
When an event occurs, create an XMLHttpRequest object and send it to sever.
Server process the XMLHttpRequest and creates the responsive date and sends to browsers.
Browser reads the returned data from server using javascript and updates the webpage content.
Why one should learn AJAX ?
AJAX is an art of exchanging data with a server and updating parts of a web page, without reloading the entire webpage.
- It is widely used in creating interactive web applications.
- It decreases the loading time with which the webpage responds faster.
- It uses XML for content and CSS for presentation, as well as the Document Object Model and JavaScript for dynamic content display.
- Applications are browser and platform independent.
How AJAX works in 3 steps?
When an event occurs, create an XMLHttpRequest object and send it to sever.
Server process the XMLHttpRequest and creates the responsive date and sends to browsers.
Browser reads the returned data from server using javascript and updates the webpage content.