Login
Remember
Register
Ask a Question
What are the difference between AJAX and Javascript?
0
votes
asked
Jan 29, 2024
in
AJAX
by
Robindeniel
What are the difference between AJAX and Javascript?
ajax
javascript
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 29, 2024
by
Robindeniel
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 time
JavaScript make a request to the server and waits for response
AJAX does not require the page to refresh for downloading the whole page
JavaScript manages and controls a Web page after being downloaded
AJAX minimizes the overload on the server since the script needs to request once
JavaScript posts a request that updates the script every time
...