Skip to content

Instantly share code, notes, and snippets.

@johanbove
Created January 29, 2020 15:45
Show Gist options
  • Select an option

  • Save johanbove/3fdb3cc3db8b4797d37993bd147a0364 to your computer and use it in GitHub Desktop.

Select an option

Save johanbove/3fdb3cc3db8b4797d37993bd147a0364 to your computer and use it in GitHub Desktop.
IE11 feature detection
// @see https://stackoverflow.com/questions/17907445/how-to-detect-ie11
if (!('MSInputMethodContext' in window)) {
console.log('This is not IE11');
} else {
console.log('This is IE11!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment