For example, can i offload a task and allow the user to keep surfing my site whilst the javascript runs?

It seems if I navigate away from the page, the worker terminates.

link|improve this question

It's a really complicated subject, but generally if the worker's page goes away, and there's no persistent reason that the worker could ever contact the world of the living again, then the worker gets the axe. – Pointy Oct 18 '10 at 0:11
thanks pointy. hmmmm. i suppose i'll need to figure out a clever way to work this. – Keith Fitzgerald Oct 18 '10 at 3:13
feedback

2 Answers

up vote 3 down vote accepted

A "page navigation" in the browser means that everything that used to exist (HTML, CSS, JavaScript, plugins, etc.) cease to exist, and the new page is loaded as if you had opened a new browser window. Web workers make more sense in the context of a "web application" than a "web page". If you are writing an application that lives in the browser, consider ditching the "page" metaphor and construct a UI that doesn't need to navigate the browser every time you change context.

link|improve this answer
feedback

I haven't personally tried but... There are so called Shared Web Workers. Supposedly they can be accessed from any script of the same origin. As I understand, that means it can be accessed from multiple browser windows. I guess it shouldn't be terminated if you just navigate around on the same page. Sorry if I am wrong but maybe that's exactly what you need ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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