When writing the onmessage callback for a Web Worker I get an "Uncaught Error: SYNTAX_ERR: DOM Exception 12" in my console when I try to send another postMessage().

var w = new Worker(url);
w.onmessage = function(e) {
    if(e.data.msg=='validate'){
        if(validateWork(e.data.wrk)){
            postMessage('proceed');
        }
    }
}
link|improve this question

46% accept rate
I had already figured this out, but I couldn't find any help when I Googled, so I wanted to share. Please ask questions if I need to clarify anything. – arkanciscan Jan 18 at 6:32
To the guy who downvoted both the question and the answer; you're welcome. – arkanciscan Jan 19 at 5:14
feedback

2 Answers

I think this would work too:

w.postMessage('proceed');

link|improve this answer
feedback
up vote -1 down vote accepted

You must call postMessage() using this when in a callback.

this.postMessage('proceed');
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.