Skip to content

Instantly share code, notes, and snippets.

@idettman
Created January 14, 2020 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idettman/3d92cef7416ffee02d482e42cbd41e7f to your computer and use it in GitHub Desktop.
Save idettman/3d92cef7416ffee02d482e42cbd41e7f to your computer and use it in GitHub Desktop.
Download and run gist JS
(function downloadAndRunCodeSnippet() {
// form rawGit proxy url
var ghUrl = 'bahmutov/code-snippets/master/first-paint.js';
var rawUrl = 'https://rawgit.com/' + ghUrl;
// download and run the script
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = rawUrl;
head.appendChild(script);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment