I have the following code:

var stressWorker = new Worker("./test/webworkers/worker.js");
stressWorker.onmessage = function(event){
    alert(event.data);
};
stressWorker.onerror = function(event){
    throw new Error(event.message + " (" + event.filename + ":" + event.lineno + ")");
};

worker.js:

onmessage = function(e){
   postMessage("test");
}

The script finds the 'worker.js' file but it doesn't actually run it. What am I doing wrong?

PS. I'm hosting both scripts using wamp and I'm using chrome

link|improve this question
feedback

2 Answers

worker.js won't do anything until it receives a message. I can't see where you are sending it a message. You need something like stressWorker.postMessage(...) somewhere.

link|improve this answer
Of course, that's it! – DOK Jun 5 '11 at 16:36
feedback

Are you sure your browser supports this particular HTML5 feature?

This article has many ways to test for support of each feature. The test for Worker is

return !!window.Worker;

Edit: As I see it, there's either a problem with your code or it can't find the file. Your code looks a lot like this example except there the .js file code is like this, with the self:

self.onmessage = function(e) {  
    self.postMessage("Hello " + e.data);  
};  

It should be easy enough for you to try that and see if it's the missing piece here.

link|improve this answer
yes, I'm using chrome and that snippet of code returned true. – fogy Jun 5 '11 at 15:02
feedback

Your Answer

 
or
required, but never shown

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