We have AJAX calls to hit a URL. Do we have option to run/execute JavaScript function in Asynchronous mode?
Note: setTimeout() will execute that function after some seconds but still that will execute in Synchronous mode.
|
|
We have AJAX calls to hit a URL. Do we have option to run/execute JavaScript function in Asynchronous mode? Note: setTimeout() will execute that function after some seconds but still that will execute in Synchronous mode.
|
|||
|
|
|
|
Most modern browsers implement JavaScript Web Workers, they provide a simple way to run scripts in background threads. Check the following articles: |
||
|
|
|
|
No. JavaScript runs in a single thread per page. However, the Google Gears plugin provides a
There's also a proposal by the Gears team to add this to HTML5. |
||
|
|