Skip to content

Instantly share code, notes, and snippets.

@garystorey
Created August 4, 2014 18:04
Show Gist options
  • Select an option

  • Save garystorey/26d707627bbda556d5a6 to your computer and use it in GitHub Desktop.

Select an option

Save garystorey/26d707627bbda556d5a6 to your computer and use it in GitHub Desktop.
From Googles PageSpeed Insight - loading css files
var cb = function() {
var l = document.createElement('link'); l.rel = 'stylesheet';
l.href = 'small.css';
var h = document.getElementsByTagName('head')[0]; h.parentNode.insertBefore(l, h);
};
var raf = requestAnimationFrame || mozRequestAnimationFrame ||
webkitRequestAnimationFrame || msRequestAnimationFrame;
if (raf) raf(cb);
else window.addEventListener('load', cb);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment