Last active
December 16, 2015 06:29
-
-
Save chourobin/5391663 to your computer and use it in GitHub Desktop.
Async Javascript Load
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Sync script will block rendering of page --> | |
<script type="text/javascript" src="http://link-to-js-assets.js"></script> | |
<!-- Async script will not block rendering = Preferred Method --> | |
<script type="text/javascript"> | |
(function() { | |
var po = document.createElement('script'); po.type = 'text/javascript'; | |
po.async = true; po.src = 'http://link-to-js-assets.js'; | |
var s = document.getElementsByTagName('script')[0]; | |
s.parentNode.insertBefore(po, s); | |
})(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment