Skip to content

Instantly share code, notes, and snippets.

@aseredenko
Last active April 2, 2018 14:18
Show Gist options
  • Save aseredenko/82019622f76f476ad945a83e285a43e9 to your computer and use it in GitHub Desktop.
Save aseredenko/82019622f76f476ad945a83e285a43e9 to your computer and use it in GitHub Desktop.
<noscript id="deferred-styles">
<link rel="stylesheet" type="text/css" href="small.css"/>
</noscript>
<script>
var loadDeferredStyles = function() {
var addStylesNode = document.getElementById("deferred-styles");
var replacement = document.createElement("div");
replacement.innerHTML = addStylesNode.textContent;
document.body.appendChild(replacement);
addStylesNode.parentElement.removeChild(addStylesNode);
};
var raf = window.requestAnimationFrame || window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;
if (raf) raf(function() { window.setTimeout(loadDeferredStyles, 0); });
else window.addEventListener('load', loadDeferredStyles);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment