Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created December 1, 2020 14:42
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 zastrow/6258a2ea476e587d40a7a2964dee1ed3 to your computer and use it in GitHub Desktop.
Save zastrow/6258a2ea476e587d40a7a2964dee1ed3 to your computer and use it in GitHub Desktop.
Check if this is IE11
const checkIE = () => {
const isIE = /* @cc_on!@ */false || !!document.documentMode;
if (isIE) {
const html = document.getElementsByTagName('html')[0];
html.className += ' ie11';
}
};
checkIE();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment