Skip to content

Instantly share code, notes, and snippets.

@dun4n
Last active January 2, 2016 09:09
Show Gist options
  • Save dun4n/8280982 to your computer and use it in GitHub Desktop.
Save dun4n/8280982 to your computer and use it in GitHub Desktop.
Aynsc Javascript "eval"
var blob = new Blob(["some code"], {"type": "application/javascript"});
var script = document.createElement('script');
script.src = URL.createObjectURL(blob);
document.body.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment