Skip to content

Instantly share code, notes, and snippets.

@ronsims2
Last active October 11, 2017 00:52
Show Gist options
  • Save ronsims2/0c5ffd99ee1806e1e0388a660c3f383f to your computer and use it in GitHub Desktop.
Save ronsims2/0c5ffd99ee1806e1e0388a660c3f383f to your computer and use it in GitHub Desktop.
<!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