Skip to content

Instantly share code, notes, and snippets.

@Polyrhythm
Created October 29, 2013 23:47
Show Gist options
  • Save Polyrhythm/7224769 to your computer and use it in GitHub Desktop.
Save Polyrhythm/7224769 to your computer and use it in GitHub Desktop.
var style = document.createElement('style');
style.textContent = '@import "' + url + '"';
var fi = setInterval(function() {
try {
style.sheet.cssRules; // <--- MAGIC: only populated when file is loaded
CSSDone('listening to @import-ed cssRules');
clearInterval(fi);
} catch (e){}
}, 10);
head.appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment