Created
August 15, 2013 01:12
-
-
Save seafoox/6237402 to your computer and use it in GitHub Desktop.
Defer loading of social script after onload
---
URL: http://www.aaronpeters.nl/blog/why-loading-third-party-scripts-async-is-not-good-enough
The loading of JS social buttons its deferred until onload event its fired.
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
<script> | |
(function(w, d, s) { | |
function go(){ | |
var js, fjs = d.getElementsByTagName(s)[0], load = function(url, id) { | |
if (d.getElementById(id)) {return;} | |
js = d.createElement(s); js.src = url; js.id = id; | |
fjs.parentNode.insertBefore(js, fjs); | |
}; | |
load('//connect.facebook.net/en_US/all.js#appId=272697932759946&xfbml=1', 'fbjssdk'); | |
load('https://apis.google.com/js/plusone.js', 'gplus1js'); | |
load('//platform.twitter.com/widgets.js', 'tweetjs'); | |
} | |
if (w.addEventListener) { w.addEventListener("load", go, false); } | |
else if (w.attachEvent) { w.attachEvent("onload",go); } | |
}(window, document, 'script')); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment