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 :)