I haven\'t been able to get something like this to work:
var myWorker = new Worker(\"http://example.com/js/worker.js\");
In my Firebug cons
According to the Web Worker draft specification, workers must be hosted at the same domain as the "first script", that is, the script that is creating the worker. The URL of the first script is what the worker URL is resolved against.