Skip to content

Instantly share code, notes, and snippets.

@arschmitz
Created May 3, 2013 13:30
Show Gist options
  • Save arschmitz/5509117 to your computer and use it in GitHub Desktop.
Save arschmitz/5509117 to your computer and use it in GitHub Desktop.
$.browser.oldIE = (function() {
var v = 3,
div = document.createElement( "div" ),
a = div.all || [];
do {
div.innerHTML = "<!--[if gt IE " + ( ++v ) + "]><br><![endif]-->";
} while( a[0] );
return v > 4 ? v : !v;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment