Skip to content

Instantly share code, notes, and snippets.

@mrinterweb
Created April 6, 2016 08:34
Show Gist options
  • Save mrinterweb/18df3f52abe3a13dbf16fa33f78132d3 to your computer and use it in GitHub Desktop.
Save mrinterweb/18df3f52abe3a13dbf16fa33f78132d3 to your computer and use it in GitHub Desktop.
var foo = function(e) {
console.log('message in worker: ' + e.data);
};
var blob = new Blob(['var onmessage = ' + foo.toString()], { type: 'text/javascript' });
document.worker = new Worker(window.URL.createObjectURL(blob));
document.worker.postMessage('Howdy');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment