0 votes
in AJAX by
What are the difference between AJAX and Javascript?

1 Answer

0 votes
by

The differences between AJAX and JavaScript are as follows:

AJAX

Javascript

AJAX sends request to the server and does not wait for the response. It performs other operations on the page during that timeJavaScript make a request to the server and waits for response
AJAX does not require the page to refresh for downloading the whole pageJavaScript manages and controls a Web page after being downloaded
AJAX minimizes the overload on the server since the script needs to request onceJavaScript posts a request that updates the script every time
...