Tagged Questions

10
votes
1answer
195 views

Is there a way to set a Web Worker to low priority?

I am thinking of using Web Workers to provide some background functionality while a user is browsing my website (that's what Web Workers are for, right?). However, I don't want to take the risk of ...
9
votes
6answers
1k views

Degrading gracefully with Web Workers

So I'm starting to hear more and more about Web Workers. I think it's absolutely fantastic, but the question I haven't seen anyone really tackle so far is how to support older browsers that do not ...
2
votes
5answers
212 views

Multithreading in JavaScript for game development

I am thinking of developing a game in pure JavaScript and html5, without using any third party plugins. The problem I am facing is that I cannot find a way to separate different "modules" of the game ...
1
vote
1answer
73 views

Why are web workers not allowed to modify the dom

I know web workers work as a separate thread than the UI thread but i dont understand why they are not allowed to modify the DOM. I mean that you can allow inter thread communication and keep the DOM ...
1
vote
1answer
376 views

iPhone browser that supports web workers?

Title says it all. Came to realize that iphone's safari browser does not support javascript web workers (multithreading). Am wondering whether there is another browser for iphone that does support ...
0
votes
3answers
428 views

How do you encode an Object in a Web Worker for it to be passed via postMessage?

Internally, Firefox will JSON encode an object passed via postMessage to and from the Web Worker. However, this only works in Trunk builds of Firefox (3.6+) and not in Firefox 3.5, so the question is ...