Skip to content

Instantly share code, notes, and snippets.

@EugeneCib
Last active August 29, 2015 14:26
Show Gist options
  • Save EugeneCib/9ab46187b021d0d53ec7 to your computer and use it in GitHub Desktop.
Save EugeneCib/9ab46187b021d0d53ec7 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
(function() {
// IE detection
var device = {};
device.ie8 = /MSIE 8/i.test(navigator.userAgent);
device.ie9 = /MSIE 9/i.test(navigator.userAgent);
device.ie10 = /MSIE 10/i.test(navigator.userAgent);
device.ie11 = /rv:11.0/i.test(navigator.userAgent);
for(var i in device)
{
if(device[i]) {
document.getElementsByTagName('html')[0].className += ' is-ie is-'+i;
break;
}
}
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment