You are on page 1of 9

JavaScript AJAX

- By
- Jyoti T.

1
AJAX
Loading data from the server and selectively updating parts of a
web page without reloading the whole page.

2
AJAX
Basically, what Ajax does is make use of the browser's built-in
XMLHttpRequest (XHR) object to send and receive
information to and from a web server asynchronously, in the
background.

3
How AJAX works ?
To perform Ajax communication JavaScript uses a special object built into the
browser—an XMLHttpRequest (XHR) object—to make HTTP requests to the
server and receive data in response.

4
Sending request

5
Sending request and receiving response

6
Sending request and receiving response

7
Syntax

8
AJAX references

https://www.tutorialrepublic.com/javascript-
tutorial/javascript-ajax.php

You might also like