Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Describe Synchronous and Asynchronous request in AJAX?
Home
AJAX
Describe Synchronous and Asynchronous request in AJAX?
0
votes
asked
May 15, 2022
in
AJAX
by
Robin
Describe Synchronous and Asynchronous request in AJAX?
ajax-synchronous
ajax-asynchronous
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 15, 2022
by
Robin
Synchronous Request- In this browser is not unresponsive but blocks the client until operation is complete. JavaScript engine is blocked of the browser.
Asynchronous Request-In this browser is responsive i.e. does not block the client. JavaScript engine in not blocked which allows user to perform different task as whole page is not refreshed.
...