Why can't a javascript file in a WebWorker access document object, when a normal external javascript file can access the document object? Or can a WebWorker access a document object? Because in w3schools http://www.w3schools.com/html5/html5_webworkers.asp it is given that since webworkers are external javascript files, they cannot access the document object, window objec, parent object.

link|improve this question

5  
Usually, w3schools is not a reliable source. You'd better use the Mozilla Developer Network instead. – Rob W Feb 23 at 10:34
feedback

1 Answer

up vote 1 down vote accepted

It can't access the DOM because then browsers would have to add lots of complexity to ensure their DOM code was thread safe.

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.