What is synchronous request in AJAX?

What is synchronous request in AJAX?

Synchronous request means that the processing will stop once the request has been sent to the server till the reply comes back. The browser freezes and you are not allowed to perform any task or send any request.

What is synchronous request in AJAX?

Synchronous AJAX is a process that makes a java script to halt or stop the processing an application until a result is sent by a server. The browser is frozen, while the request is processed. The response time is 99.99% quick and fast enough. In case of intrusion for a request or transfer of the file, the browser freezes may be for two minutes until the time is out for the request. The advantages of using synchronous AJAX are, simple to code and can be used in the events ‘onunload’ and ‘onbeforeunload’.
When should I use a Java applet instead of AJAX?
When should I use a Java applet instead of AJAX? Scenarios to use Java applet instead of AJAX:
How Ajax is different?
How Ajax is different? - AJAX allows for asynchronous processing of events. This is different from the traditional sequential....
Is the server or the client in control in AJAX?
Is the server or the client in control in AJAX? - AJAX techniques can be implemented by server only, client or, or even mix of both
Post your comment