Created
August 6, 2009 18:00
-
-
Save appden/163468 to your computer and use it in GitHub Desktop.
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
| // add chrome to jQuery browser test | |
| if ((jQuery.browser.chrome = /chrome/i.test(navigator.userAgent)) | |
| jQuery.browser.version = navigator.userAgent.match(/chrome\/(\d+)/i)[1]; | |
| // alternative I just thought of... | |
| if (/chrome\/(\d+)/i.exec(navigator.userAgent)){ | |
| jQuery.browser.chrome = true; | |
| jQuery.browser.version = RegExp.$1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment