Skip to content

Instantly share code, notes, and snippets.

@shadyonline
Forked from cvan/check-if-css-loaded.js
Created December 26, 2020 22:48
Show Gist options
  • Save shadyonline/94a97c89de4134b33975ea2e87f40dea to your computer and use it in GitHub Desktop.
Save shadyonline/94a97c89de4134b33975ea2e87f40dea to your computer and use it in GitHub Desktop.
check if a CSS stylesheet has loaded
var linkEl = document.head.querySelector('link[href*="/styles/index.css"]');
var cssLoaded = Boolean(linkEl.sheet);
linkEl.addEventListener('load', function () {
cssLoaded = true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment