Created
October 21, 2011 19:58
-
-
Save damien/1304792 to your computer and use it in GitHub Desktop.
Detect IE8 with jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Assuming jQuery in $ | |
| if ($.browser.msie && parseInt($.browser.version, 10) === 8)) { | |
| // do stuff | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment