Skip to content

Instantly share code, notes, and snippets.

@lifesinger
Created August 25, 2010 01:21
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save lifesinger/548648 to your computer and use it in GitHub Desktop.
Save lifesinger/548648 to your computer and use it in GitHub Desktop.
/**
* modified from http://gist.github.com/527683
* only improve slightly to get small
*/
var ie = function(v, p, needle, undef) {
needle = p.getElementsByTagName('br');
while(
p.innerHTML = '<!--[if gt IE ' + (++v) + ']><br><![endif]-->',
needle[0]
);
return v > 4 ? v : undef;
}(3, document.createElement('p'));
@cowboy
Copy link

cowboy commented Aug 25, 2010

(you'll need to test p.getElementsByTagName('br')[0] in the while loop)

@lifesinger
Copy link
Author

@cowboy: needle is live nodelist, don't need to re get in loop

@cowboy
Copy link

cowboy commented Aug 25, 2010

How did I not know that? That's really interesting, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment