Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HipsterZipster/348086c86a9c248e4fe8a126bd3518d2 to your computer and use it in GitHub Desktop.
Save HipsterZipster/348086c86a9c248e4fe8a126bd3518d2 to your computer and use it in GitHub Desktop.
Preload feature detection
var DOMTokenListSupports = function(tokenList, token) {
if (!tokenList || !tokenList.supports) {
return;
}
try {
return tokenList.supports(token);
} catch (e) {
if (e instanceof TypeError) {
console.log("The DOMTokenList doesn't have a supported tokens list");
} else {
console.error("That shouldn't have happened");
}
}
};
var linkSupportsPreload = DOMTokenListSupports(document.createElement("link").relList, "preload");
if (!linkSupportsPreload) {
// Dynamically load the things that relied on preload.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment