vote up 0 vote down star

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.

flag

56% accept rate

2 Answers

vote up 3 vote down

Most modern browsers implement JavaScript Web Workers, they provide a simple way to run scripts in background threads.

Check the following articles:

link|flag
vote up 2 vote down

No. JavaScript runs in a single thread per page.

However, the Google Gears plugin provides a WorkerPool:

WorkerPool API

The WorkerPool API allows web applications to run JavaScript code in the background, without blocking the main page's script execution.

There's also a proposal by the Gears team to add this to HTML5.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.