Skip to content

Instantly share code, notes, and snippets.

@felipefialho
Created June 24, 2016 19:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipefialho/3830cf53cf436a653a026bf296b8e0fd to your computer and use it in GitHub Desktop.
Save felipefialho/3830cf53cf436a653a026bf296b8e0fd to your computer and use it in GitHub Desktop.
// ==================================================
// IE Checker
// ==================================================
function isIE(userAgent) {
userAgent = userAgent || navigator.userAgent;
return userAgent.indexOf('MSIE ') > -1 || userAgent.indexOf('Trident/') > -1 || userAgent.indexOf('Edge/') > -1;
}
@felipefialho
Copy link
Author

Check if the browser is Internet Explorer with JavaScript.

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