Skip to content

Instantly share code, notes, and snippets.

@tyomo4ka
Created February 1, 2014 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tyomo4ka/8751203 to your computer and use it in GitHub Desktop.
Save tyomo4ka/8751203 to your computer and use it in GitHub Desktop.
Approach to run IE specific code when you can not edit HTML code on page directly.
var lt_ie_8 = function () {
var div = document.createElement("div");
div.innerHTML = "<!--[if lt IE 8]>]><i></i><![endif]-->";
if (div.getElementsByTagName("i").length) {
return true;
}
return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment