Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Created February 14, 2018 14:58
Show Gist options
  • Save carolina-vallejo/4eb97b8d0fa3a9f01ef0ae237bb8c902 to your computer and use it in GitHub Desktop.
Save carolina-vallejo/4eb97b8d0fa3a9f01ef0ae237bb8c902 to your computer and use it in GitHub Desktop.
detect ie edge with javascript
// detect IE8 and above, and edge
if (document.documentMode || /Edge/.test(navigator.userAgent)) {
alert('Hello Microsoft User!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment