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'm using the following code to detect whether the browser being used on my mobile site matches a certain crieteria:

var isiPhone = navigator.userAgent.match(/iPhone/i) != null;
if (isiPhone){ alert ('iphone');

but if I attempt to do this for Firefox / Mozilla, I can't get it to work. I've tried:

var isFirefox = navigator.userAgent.match(/Mozilla/i != null);

and

var isFirefox = navigator.userAgent.match(/Firefox/i != null);

I visited whatismyuseragent.com and got the following:

Mozilla/5.0 (Android;Linux armv7l; rv6.0) Gecko/20110811 Gecko Firefox/6.0 Fennec/6.0

Any idea how I properly detect this? I need to write some firefox specific code.

share|improve this question
1  
Depending on what you're trying to do, you might consider doing feature detection instead (ejohn.org/blog/future-proofing-javascript-libraries). Also see this other question on SO: stackoverflow.com/questions/1294586/… – mbillard Aug 30 '11 at 16:02

3 Answers

up vote 10 down vote accepted

You can use the navigator.userAgent to detect the browser and navigator.platform to detect the current platform.

To Detect Firefox:

var is_firefox = navigator.userAgent.toLowerCase().indexOf('firefox') > -1;

To Detect Android:

var is_android = navigator.platform.toLowerCase().indexOf("android") > -1;

To Detect Both:

if(is_firefox && is_android)
    //Do Work

I would recommend using something like modernizr to avoid browser detection and focus on feature detection.

share|improve this answer
OP is asking to detect the mobile version. How will this differ between mobile and non-mobile? – JaredPar Aug 30 '11 at 16:00
Should be fixed - added platform detection in there as well. – Rion Williams Aug 30 '11 at 16:10
Sniffing for "firefox" is almost certainly the wrong thing to do. You probably want to look for "gecko/" instead. Sadly, looking for "gecko" doesn't work because of WebKit-based browsers often including that string in the UA string... – Boris Zbarsky Aug 30 '11 at 16:49
It's a pity Firefox Mobile doesn't support touch events, otherwise you could just do a simple ("ontouchstart" in window) and be done with it. Now you need to do browser sniffing and we're all back in the nineties again :( – Husky Nov 9 '11 at 13:54

The mobile version of Firefox is Fennec, so just search for that:

var is_Firefox = navigator.userAgent.toLowerCase().indexOf('fennec') > -1;
share|improve this answer

var isFirefox = /Android.+Firefox\//.test(navigator.userAgent);

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.