Skip to content

Instantly share code, notes, and snippets.

View smartium's full-sized avatar

SMARTIUM smartium

View GitHub Profile
@emjayess
emjayess / async-css.js
Created October 10, 2012 21:49
simple async loading patterns
// load a style
;(function(d) {
var lnk = d.createElement('link'), h = d.getElementsByTagName('head')[0];
lnk.href = 'css.css';
lnk.type = 'text/css';
lnk.rel = 'stylesheet';
h.appendChild(lnk);
}​(document))​​​​;