Jump to content

synchronous and asynchrnous in ajax?


radha1

Recommended Posts

Synchronous communication means that your user cannot interact with your page until the download is complete. The user will not be able to push buttons. No other javascript functions can be triggered.Asynchronous communication operates in a separate thread. The browser gives some cycles per second to the asynchronous thread and keeps some cycles, so that other processes continue to run. This allows AJAX to run "in the background." The user can still interact with the document.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...