Last active
April 15, 2019 21:42
-
-
Save 8ctopotamus/cd2dd9723359e65a36be65933cf822ea to your computer and use it in GitHub Desktop.
Detect IE 11 and tell user to use a real browser ;P
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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