Skip to content

Instantly share code, notes, and snippets.

@ldong
Created June 11, 2015 19:13
Show Gist options
  • Save ldong/c9b13c89e0d24126ef62 to your computer and use it in GitHub Desktop.
Save ldong/c9b13c89e0d24126ef62 to your computer and use it in GitHub Desktop.
load script from chrome dev tools

Load Script from Chrome Dev tools

var scriptSrc='//cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.js';
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'script.js';
script.src = scriptSrc;
document.head.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment