Skip to content

Instantly share code, notes, and snippets.

@8ctopotamus
Last active April 15, 2019 21:42
Show Gist options
  • Select an option

  • Save 8ctopotamus/cd2dd9723359e65a36be65933cf822ea to your computer and use it in GitHub Desktop.

Select an option

Save 8ctopotamus/cd2dd9723359e65a36be65933cf822ea to your computer and use it in GitHub Desktop.
Detect IE 11 and tell user to use a real browser ;P
// detect IE
if (navigator.appName == 'Microsoft Internet Explorer' || !!(navigator.userAgent.match(/Trident/) || navigator.userAgent.match(/rv:11/))) {
document.write('<p style="text-align: center;">You are using a browser no longer supported by Microsoft. To use What Plow Fits, please use a <a href="http://outdatedbrowser.com/en" target="_blank">modern browser</a>.</p>')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment