Tagged Questions

5
votes
4answers
283 views

Combining the power of Processing.js and Web Workers

I've been doing some reading about two (relatively) new concepts in the Javascript language - Web Workers and John Resig's awesome Processing.js (well, not really a new 'Javascript …
4
votes
4answers
134 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 bro …
3
votes
1answer
49 views

How do I talk to Firebug from a Web Worker?

My web workers are becoming increasingly complicated and I'm sorely missing Firebug access while working with them. This: console.log("test"); Does not produce anything from a w …
2
votes
1answer
88 views

Are Web Workers themselves allowed to have Web Worker threads?

This would seem to be the case in Firefox 3.5+, there I can instantiate a Web Worker, and inside the worker, spawn another thread. However, the code will not work in Google Chrome, …
0
votes
1answer
68 views

is postMessage JSON encoded/decoded in Google Chrome as it is in Firefox?

I know its part of the HTML5 spec, but sometimes WebKit doesn't conform to the latest draft of the spec.
0
votes
3answers
36 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, …