Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need some function returning a boolean value to check if the browser is Chrome.

How do I create such functionality?

share|improve this question
8  
Are you sure that you don't want to do feature detection instead (instead of asking "is this Chrome?" ask "can this do that I need?") – bdukes Dec 30 '10 at 18:20
1  
Amen to that - detecting specific browsers is exactly how we got the problem of sites refusing to work with any other browser than IE and Netscape, even when other browsers are perfectly capable of rendering them properly. Capability detection is the safer, future-compatible, way forward. – kander Dec 30 '10 at 18:41
7  
who knows? he might want to have user download a chrome extension – naveen Dec 30 '10 at 18:53
No - my point is to use some three.js just to create fun 3d box backgrownd=) which works fast only in chrome...=) – Spender Dec 30 '10 at 18:54

6 Answers

up vote 32 down vote accepted
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;

However, as mentioned User Agents can be spoofed so it is always best to use feature-detection (such as Modernizer) when handling these issues, as other answers mention.

share|improve this answer
1  
User Agents can be spoofed! Best to use feature detection! Try using: var is_chrome = window.chrome; – PAPAFRESH Nov 12 '12 at 17:39
what is the reasoning behind using .toLowerCase - why not just navigator.userAgent.indexOf('Chrome') I see a lot of people use it but im not sure the point? – Jon Jan 30 at 14:47
adding .toLowerCase just makes sure the string gets forced to lowercase, so when the string in the condition is checked, it evaluates correctly when checking against the user agent – PAPAFRESH Feb 25 at 17:24

User agents can be spoofed! Please try this:

var isChrome = window.chrome;
if(isChrome) {
   // is chrome 
} else { 
   // not chrome 
}

Best to use feature detection! The reason this works is because if you use the Google Chrome inspector and go to the console tab. Type 'window' and press enter. Then you be able to view the DOM properties for the 'window object'. When you collapse the object you can view all the properties, including the 'chrome' property.

I hope this helps!

share|improve this answer
2  
This is actually (for once) a correct late answer! +1. – Richard J. Ross III Nov 12 '12 at 17:45
This does not work for IE10. typeof window.chrome in IE10 returns {object} – magritte May 30 at 11:00
it wouldn't work in ie10 because ie10 does not have window.chrome.. . so this would return false in ie10. – PAPAFRESH May 31 at 14:05
var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() );
share|improve this answer
1  
I liked this, remember you can also do var is_chrome = /chrome/i.test(navigator.userAgent); too – AlanFoster Dec 16 '11 at 2:00

even shorter: var is_chrome = /chrome/i.test( navigator.userAgent );

share|improve this answer
+1: for even shorter... :) – naveen Jan 28 at 16:34

You may also want the specific version of Chrome:

var ua = navigator.userAgent;
if(/chrome/i.test(ua)) {
    var uaArray = ua.split(' ')
    ,   version = uaArray[uaArray.length - 2].substr(7);
}

Apologies to The Big Lebowski for using his answer within mine.

share|improve this answer

bdukes you make a great point. But I can see where the question comes from..because I myself just decided to drop support for all other HTML5 browsers due to various issues for my Gaming Site/Engine. Chrome however works great and is available on these platforms & devices:

iOS 4.3 & Later
Android 4.0 & Latar
Windows XP Service Pack 2+ 
Windows Vista 
Windows 7 
Windows 8 
Mac OS X 10.6 or later 
Ubuntu 10.04+ 
Debian 6+ 
OpenSuSE 11.3+ 
Fedora Linux 14

Advanced Users Can also Play use our services on these platforms 
Xbox 360 
Playstation 3 
Wii U Wii (Possible...Some signs of issues on the forums)

Until Microsoft and Apple wake up and start getting stuff right....why not just use the top contender that just....works!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.