I'm wondering if I can use Jquery inside the web-worker file. Google Chrome gives me this error: "Uncaught ReferenceError: $ is not defined".

Here is the code: The parent file:

var loader = new Worker(BASE_URL+"js/rss_loader_worker.js");
// ask the worker to start loading the Rss from the server
loader.postMessage("loadRss");
// when receive the response from the server
loader.onmessage = function(event){
  console.log(event.data);
}

the worker file:

onmessage = function(event){
  if (event.data === "loadRss"){
    loadRss();
  }
}

/**
 * this function handles the AJAX request to the server side
 * then pass the content to the view page
 * @param none
 * @return html text
 */

loadRss = function(){
  $.ajax({
    data: {city: CITY_LOCATION},
    url: BASE_URL+"/getfeeds",
    onsucess: function(data){

    }
  });
}

Please help, thank you :)

link|improve this question

40% accept rate
importScripts("jquery.js"); can't work : jQuery uses the 'window' variable, that is not accessible to web workers. But you may use an other library that will do the job =) – Romain Durand Feb 23 at 10:19
feedback

4 Answers

up vote 2 down vote accepted

no you cannot. There's no access to non-thread safe components or the DOM and you have to pass specific data in and out of a thread through serialized objects. So you have to work really hard to cause problems in your code. JQuery is a Javascript DOM Library.

But you can use a native XMLHttpRequest in your worker however

And, importing external scripts does not go via the pagewith ascript tag : use importScripts() for that in your worker file.

link|improve this answer
ok thank for your help. It's clear now. I will find another way. – Tri Jan 29 '11 at 19:22
feedback

I'm not 100% sure about loading jQuery, but here's what I found:

You can load external script files or libraries into a worker with the importScripts() function.

http://www.html5rocks.com/en/tutorials/workers/basics/#toc-enviornment-loadingscripts

importScripts('script1.js');
importScripts('script2.js');

or

importScripts('script1.js', 'script2.js');

UPDATE: You cannot load jQuery, because jQuery requires DOM access, which web workers don't have.

link|improve this answer
feedback

The execution environment in Node.JS also lacks a native DOM implementation. I think it's fair to say that Node.JS and HTML5 Web Workers share certain restrictions.

There are ways to simulate a DOM implementation for the purpose of using jQuery in Node.JS. If you still want to use jQuery in Web Workers, I think you should search for the Node.JS solutions and see if they apply.

link|improve this answer
feedback

take a look on this plug-in https://github.com/rwldrn/jquery-hive

link|improve this answer
jQuery hive is an abstraction for using web workers in jQuery, not the other way around – Anzeo Mar 23 at 8:15
feedback

Your Answer

 
or
required, but never shown

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