Last active
October 11, 2017 00:52
-
-
Save ronsims2/0c5ffd99ee1806e1e0388a660c3f383f to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>title</title> | |
<script> | |
window.orgMapJustice = {}; | |
if (navigator.userAgent.match(/MSIE/)) { | |
window.orgMapJustice.isIE = true; | |
} | |
</script> | |
<script> | |
if (window.orgMapJustice.isIE) { | |
alert('IE sucks!'); | |
} | |
else { | |
alert('No, IE, you are good!'); | |
} | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment