Created
January 3, 2013 18:08
-
-
Save caspaunitbit/4445485 to your computer and use it in GitHub Desktop.
Detect IE
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
Detect Safari (if( $.browser.safari)), | |
Detect IE6 and over (if ($.browser.msie && $.browser.version > 6 )), | |
Detect IE6 and below (if ($.browser.msie && $.browser.version <= 6 )), | |
Detect FireFox 2 and above (if ($.browser.mozilla && $.browser.version >= '1.8' )) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment