Skip to content

Instantly share code, notes, and snippets.

@klipstein
Created October 2, 2012 16:59
Show Gist options
  • Save klipstein/3821124 to your computer and use it in GitHub Desktop.
Save klipstein/3821124 to your computer and use it in GitHub Desktop.
Spawning Worker using Blob
var b = new Blob();
var u = window.URL.createObjectURL(b);
var w = new Worker(u); // throws Security Error in IE 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment