Skip to content

Instantly share code, notes, and snippets.

View joasgarcia's full-sized avatar

Joás Garcia joasgarcia

View GitHub Profile
@joasgarcia
joasgarcia / multiple-3rd-party-widgets.js
Created May 16, 2014 03:15 — forked from zenorocha/multiple-3rd-party-widgets.js
Carregamento assíncrono de scripts de terceiros - Boa prática
(function() {
var script,
scripts = document.getElementsByTagName('script')[0];
function load(url) {
script = document.createElement('script');
script.async = true;
script.src = url;
scripts.parentNode.insertBefore(script, scripts);