Skip to content

Instantly share code, notes, and snippets.

@undfine
Created February 1, 2024 21:15
Show Gist options
  • Select an option

  • Save undfine/3ed79e1a239ce0fe69cac64fc40fd9d9 to your computer and use it in GitHub Desktop.

Select an option

Save undfine/3ed79e1a239ce0fe69cac64fc40fd9d9 to your computer and use it in GitHub Desktop.
inject external script using JS
var script = document.createElement('script');
script.src = 'https://example.com/external-script.js';
script.async = true; // or script.defer = true; for defer attribute
document.body.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment