Skip to content

Instantly share code, notes, and snippets.

@DanElliottPalmer
Created December 12, 2013 15:04
Show Gist options
  • Save DanElliottPalmer/7929427 to your computer and use it in GitHub Desktop.
Save DanElliottPalmer/7929427 to your computer and use it in GitHub Desktop.
Detect IE in javascript Had issues with a CMS I use removing conditional statements in the page so figured this would be a way if I ever need to do it again. Taken from: http://abbett.org/post/a-guide-to-building-webapps-with-ie8-support
var ie = (function(){
var undef,
v = 3,
div = document.createElement('div'),
all = div.getElementsByTagName('i');
while (
div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->',
all[0]
);
if (Function('/*@cc_on return document.documentMode===10@*/')()){
v = 10;
}
return v > 4 ? v : undef;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment