Tagged Questions
1
vote
1answer
76 views
How to use jQuery to Parse XML from within a Web Worker Thread
Skimming? Just read what's bold.
Howdy friends! I'm building a web application that needs to do some serious XML crunching.
I currently have a function that uses jQuery to parse and manipulate ...
4
votes
4answers
176 views
Stop execution of function after fixed time in javascript
I need to let a function run for a fixed number of seconds, then terminate. I could use jQuery or web workers, but my attempt at doing it directly faild.
Tks for help this now works:
startT = new ...
0
votes
1answer
55 views
spawning sub worker returns error
I am spawnning child worker but it is throwing an error "Worker not defined".
how can I spawn child worker?
Here is my demo getting error.
1
vote
1answer
82 views
how to communicate two webworkers html5?
I am going through webworkers documentation, I cant find any api that support communication between two webworkers. Here is my context, now i need to communicate worker1 with worker2 directly? not ...
2
votes
3answers
297 views
Web Workers communication using MessageChannel HTML5
I would like to implement communication between webworkers. I read the W3C documentation and I found MessageChannel is one of the ways to do it, but while reading MessageChannel I couldn't understand ...
1
vote
2answers
187 views
Different server request behaviour within web workers
Within our web application we are using the following method of server communication
XMLHttpRequest
We are sending the same content/data in both cases but the XMLHttpRequest is ran inside a ...
3
votes
1answer
243 views
Passing the document object to a web worker
I know that web workers cant access the dom directly. But would it be a bad idea to do something like this:
var doc = $(document);
var worker = new Worker("worker.js");
worker.postMessage({ cmd: ...
0
votes
1answer
762 views
HTML5 and Web Workers on IOS
I'm working on building IOS applications using jQuery and HTML5. Recently I learned that HTML5 Web Workers provide a great deal of flexibility for Javascript to perform multi-threaded programming, ...
0
votes
2answers
265 views
JSon to Asp.Net inside a Web Worker. Can't find the method inside the Controller
I'm sending a JSon to my Asp.Net MVC 3 Controller that is inside a Web Worker (using jquery-hive).
At the PostMessage, I can capture a Asp.Net error telling me that it find the controller but has no ...
13
votes
1answer
6k views
'Uncaught Error: DATA_CLONE_ERR: DOM Exception 25' thrown by web worker
So I'm creating a web worker:
var arrayit = function(obj) {
return Array.prototype.slice.call(obj);
};
work = arrayit(images);
console.log(work);
//work = images.push.apply( images, array );
// ...
2
votes
1answer
258 views
jQuery custom ajax build
I'm trying to strip everything except for ajax functionality from jQuery. Sorry for the silly question, but hear me out:
I'm using web workers to make the ajax call so I can't have the core.js stuff ...
3
votes
2answers
390 views
Non-DOM subset of jQuery
I'd like to be able to use a number of utility methods from jQuery in a Web Worker, where there is no access to the window or document objects.
Specifically, I'd like to be able to use methods like ...
13
votes
4answers
7k views
HTML Web Worker and Jquery Ajax call
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 ...
1
vote
2answers
259 views
Web Workers and Sparklines
I know that Web Workers don't have access to the DOM, but I was wondering if there was any way they could render a Sparkline graph behind the scenes and pass it back. If not, is there ANY way I could ...
