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