Skip to content

Instantly share code, notes, and snippets.

@Shoora
Forked from james2doyle/async_load.js
Last active February 28, 2019 03:35
Show Gist options
  • Save Shoora/486f8fab6b2f799cb28d to your computer and use it in GitHub Desktop.
Save Shoora/486f8fab6b2f799cb28d to your computer and use it in GitHub Desktop.
async_load.js
(function() {
function async_load(){
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = 'http://yourdomain.com/script.js';
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
if (window.attachEvent) {
window.attachEvent('onload', async_load);
} else {
window.addEventListener('load', async_load, false);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment