Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Sorry, Two ques: 1)So I am using this Web worker which has a Global variable declared in it. Can I access the same(Global variable in worker 1) in the newly spawned web worker(worker 2)? And one more, I tried using jquery in web worker, I get error "window is not defined"



importScripts('jquery-latest.js');


function fetch_ajax(url) {
  $.ajax({
    type: 'GET', 
    url: url,
    success: function(response) {
    postMessage(response);  


    }
  });
}


fetch_ajax('test.txt');

Is there any way to use the jquery in worker? Thanks in advance

share|improve this question
jQuery in a web worker... WHY?! – Rob W Jun 27 '12 at 15:11
To use ajax requests in worker and return the response to the main thread! – codingjerk Jun 28 '12 at 5:50

1 Answer

up vote 2 down vote accepted

Web Workers don't have a window object.

To access global state, use self instead, code that will work on both the main thread and the worker thread.

But note that you still won't be able to access or manipulate the parent DOM (e.g. get window.jQuery via self.jQuery).

While the main thread window self points to the Window object, in worker threads self points to a separate WorkerGlobalScope object.

share|improve this answer
1  
Tnx I practically tested and found I am unable to access a variable in worker1 in worker2. And also unable to use jQuery as there is no access to window object. Instead, I used native XHR and returned the response successfully... – codingjerk Jun 28 '12 at 5:54
1  
And it's a good thing. Communication with workers is via messages (PostMessage method and onmessage event). Access to DOM or some shared variables would result in lots of nasty errors... – user1068352 Mar 4 at 19:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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