Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save igrigorik/a02f2359f3bc50ca7a9c to your computer and use it in GitHub Desktop.
Save igrigorik/a02f2359f3bc50ca7a9c to your computer and use it in GitHub Desktop.
DOMTokenList supports() example for Preload
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");
}
}
};
// test if preload is supported
var linkSupportsPreload = DOMTokenListSupports(document.createElement("link").relList, "preload");
if (linkSupportsPreload) {
// ...
}
@safareli
Copy link

on IE relList is not supported https://caniuse.com/#search=relList so you this only works on modern browsers which already support preload https://caniuse.com/#search=preload

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment