Skip to content

Instantly share code, notes, and snippets.

@yoko
Created January 21, 2009 01:55
Show Gist options
  • Save yoko/49807 to your computer and use it in GitHub Desktop.
Save yoko/49807 to your computer and use it in GitHub Desktop.
$.browser.iphone and $.browser.chrome
(function($) {
var userAgent = navigator.userAgent.toLowerCase();
$.extend($.browser, {
iphone: $.browser.safari && /iphone/.test(userAgent),
chrome: $.browser.safari && /chrome/.test(userAgent)
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment