How can I detect if a user is viewing my web site from a mobile web browser so that I can then auto detect and display the appropriate version of my web site?

link|improve this question
4  
Does iPad count? :) – Seva Alekseyev Nov 2 '10 at 16:12
11  
Seva's comment brings up a good question. What does "mobile" really mean today? Does it refer to a "feature phone" that has a browser but not much of one? Does it refer to full featured smart phones where the input method and display resolution are limiting factors? How about tablets that are both easy to interact with and have high resolution displays? How about devices like media centers - they never leave the livingroom but they have similar limitations. A friend at work sent me this. I found it very insightful. slideshare.net/bryanrieger/rethinking-the-mobile-web-by-yiibu – spaaarky21 Mar 25 '11 at 0:27
But the ipad is a tablet.. and uses safari for default, it is unlikely youd want to count the ipad – Ricki Jun 5 '11 at 20:26
@Ricki but on the ipad you still cannot e.g. display flash content or use a javascript-based rich text editor like tinymce. – TJ Ellis Oct 14 '11 at 1:43
@TJ Ellis really? I thought the ipad2 could handle flash. Thats a good point then, but there are ways around that. Such as HTML5's video & canvas options for a ipad compatible site as safari has HTML5 capabilities. – Ricki Oct 14 '11 at 13:46
show 3 more comments
feedback

22 Answers

up vote 42 down vote accepted

Yes, reading the User-Agent header will do the trick.

There are some lists out there of known mobile user agents so you don't need to start from scratch. What I did when I had to is to build a database of known user agents and store unknowns as they are detected for revision and then manually figure out what they are. This last thing might be overkill in some cases.

If you want to do it at Apache level, you can create a script which periodically generates a set of rewrite rules checking the user agent (or just once and forget about new user agents, or once a month, whatever suits your case), like

RewriteEngine On

RewriteCond %{HTTP_USER_AGENT} (OneMobileUserAgent|AnotherMobileUserAgent|...)
RewriteRule (.*) mobile/$1

which would move, for example, requests to http://domain/index.html to http://domain/mobile/index.html

If you don't like the approach of having a script recreate a htaccess file periodically, you can write a module which checks the User Agent (I didn't find one already made, but found this particularly appropriate example) and get the user agents from some sites to update them. Then you can complicate the approach as much as you want, but I think in your case the previous approach would be fine.

link|improve this answer
2  
Can this be accomplished at the web server layer (Apache) through some type of .htaccess command - instead of using a scripting language like PHP? – TeddyTom Jun 17 '09 at 4:54
feedback

There are open source scripts on Detect Mobile Browser that do this in Apache, ASP, ColdFusion, JavaScript and PHP.

link|improve this answer
This failed on my phone (Samsung u550 using Verizon Wireless). – guitar- Nov 16 '10 at 4:40
4  
@guitar If that's the case then you should send in your UA. – Adam Tuttle Mar 21 '11 at 11:11
2  
Bleh... I really dislike the "code smell" of these solutions. Regex matching using a bunch of 4-character prefixes with no clue regarding where they originally came from... no thanks. – jnylen Sep 28 '11 at 3:53
1  
That is one knarly regex statement. I agree, the code smell is not good on this one. – Jack Cox Oct 22 '11 at 17:58
3  
There's no way around it though. At some level any type of solution is going to do a regex check on the user agent. – Kyle Feb 21 at 15:12
show 1 more comment
feedback

Just a thought but what if you worked this problem from the opposite direction? Rather than determining which browsers are mobile why not determine which browsers are not? Then code your site to default to the mobile version and redirect to the standard version. There are two basic possibilities when looking at a mobile browser. Either it has javascript support or it doesn't. So if the browser does not have javascript support it will default to the mobile version. If it does have JavaScript support, check the screen size. Anything below a certain size will likely also be a mobile browser. Anything larger will get redirected to your standard layout. Then all you need to do is determine if the user with JavaScript disabled is mobile or not.
According to the W3C the number of users with JavaScript disabled was about 5% and of those users most have turned it off which implies that they actually know what they are doing with a browser. Are they a large part of your audience? If not then don't worry about them. If so, whats the worst case scenario? You have those users browsing the mobile version of your site, and that's a good thing.

link|improve this answer
2  
This is a very good idea, I think it's an elegant solution. – Maxim Veksler Mar 29 '10 at 7:35
+1 this sounds like a pretty sweet idea, but would this affect search engine crawlers? – Mikey G Apr 2 at 22:12
feedback

My favorite Mobile Browser Detection mechanism is WURFL. It's updated frequently and it works with every major programming/language platform.

link|improve this answer
It's good, but the statement "works with every major programming/language platform" is a little bold. – Kyle Feb 21 at 15:39
It's also no longer free. – MarkJ Feb 29 at 16:05
It is now only available under the pesky AGPL licence, unless you buy it. en.wikipedia.org/wiki/WURFL#License_update – MarkJ Mar 1 at 8:42
@MarkJ: yes. Too bad. – Pablo Santa Cruz Mar 1 at 14:12
feedback

Please take a look at http://51degrees.codeplex.com/. It is an ASP.NET open source module which detects mobile devices and provides auto redirection to mobile optimized pages when request is coming from mobile device. It makes use of WURFL mobile device database. For redirection there is no need to modify existing ASP.NET web application pages.

Apart from this it also gives upto-date mobile capability information like manufacturer, model, screen height & width, image formats supported etc...... which helps to customize pages for best mobile output.

The latest release has facility to define different redirection locations based on the conditions.

For e.g. In below example MobileDeviceManufacturer is used as the property. This properties are exposed through the HttpRequest classes Browser property. Both WURFL capabilities and ASP.NET Browser properties can be used with the property attribute. If none of the match and the requesting device is a mobile device then the mobileHomePageUrl will be used.

<redirect firstRequestOnly="true"
mobileHomePageUrl="~/Mobile/Default.aspx"
timeout="20"
devicesFile="~/App_Data/Devices.dat"
mobilePagesRegex="/[Apple|RIM|Nokia|Mobile]/">
<locations>
<!--Send iphone to their own home page.-->
<location url="~/Apple/Default.aspx">
<add property="MobileDeviceManufacturer" matchExpression="Apple"/>
</location>
<!--Send blackberry to their own home page.-->
<location url="~/RIM/Default.aspx">
<add property="MobileDeviceManufacturer" matchExpression="RIM"/>
</location>
<!--Send nokia to their own home page.-->
<location url="~/Nokia/Default.aspx">
<add property="MobileDeviceManufacturer" matchExpression="Nokia"/>
</location>
</locations>
</redirect>

So very easy to implement redirection without any need to update your existing website ASP.NET pages

link|improve this answer
5  
The 51degrees/WURFL stuff is massive overkill if you just want to know "is this a mobile browser?" In that case you are better off with something like Chad Smith's answer (detectmobilebrowser.com). – mhenry1384 Feb 28 '11 at 20:40
Missing the Third+ one's nowadays.. and even more pre xmas 2011 matchExpression="Nokia|Android|javaSun" redirect="666 Lawsuit" – PedroMorgan Dec 3 '11 at 0:54
feedback

Have you considered using css3 media queries? In most cases you can apply some css styles specifically for the targeted device without having to create a separate mobile version of the site.

@media screen and (max-width:1025px) {
   #content {
     width: 100%;
   }
}

You can set the width to whatever you want, but 1025 will catch the iPad landscape view.

You'll also want to add the following meta tag to your head:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

Check out this article over at HTML5 Rocks for some good examples

link|improve this answer
I think this is actually the best way to go. Scripts that look at User Agent strings are destined to get out of date. Looking at available screen real estate allows responsive design without any worry of new devices not being detected. – Adam Tuttle Nov 26 '11 at 19:16
feedback

Here's how I do it in JavaScript:

function isMobile() {
  var index = navigator.appVersion.indexOf("Mobile");
  return (index > -1);
}

See an example at www.tablemaker.net/test/mobile.html where it triples the font size on mobile phones.

link|improve this answer
if you want to merge your accounts see here: meta.stackoverflow.com/questions/18232/… – Brandon Apr 14 '11 at 18:01
feedback

The Mobile Device Browser File is a great way to detect mobile (and other) broswers for ASP.NET projects: http://mdbf.codeplex.com/

link|improve this answer
Out of curiosity: why is @Amit's comment flagged? It seems perfectly reasonable supplementary information for the answer... =/ – David Thomas Mar 26 '11 at 12:09
Is Mobile Device Browser still working? I notice that there is a notation about it being offline?... – creativeedg10 Oct 25 '11 at 17:59
feedback

You can check the User-Agent string. In JavaScript, that's really easy, it's just a property of the navigator object.

var useragent = navigator.userAgent;

You can check if the device if iPhone or Blackberry in JS with something like

var isIphone = !!agent.match(/iPhone/i),
    isBlackberry = !!agent.match(/blackberry/i);

if isIphone is true you are accessing the site from an Iphone, if isBlackBerry you are accessing the site from a Blackberry.

You can use "UserAgent Switcher" plugin for firefox to test that.

If you are also interested, it may be worth it checking out my script "redirection_mobile.js" hosted on github here https://github.com/sebarmeli/JS-Redirection-Mobile-Site and you can read more details in one of my article here:

http://blog.sebarmeli.com/2010/11/02/how-to-redirect-your-site-to-a-mobile-version-through-javascript/

link|improve this answer
feedback
protected void Page_Load(object sender, EventArgs e)
{
    if (Request.Browser.IsMobileDevice == true)
    {
        Response.Redirect("Mobile//home.aspx");
    }
}

This example works in asp.net

link|improve this answer
feedback

Yes user-agent is used to detect mobile browsers. There are lots of free scripts available to check this. Here is one such php code which will help you redirect mobile users to different website.

link|improve this answer
Can this be accomplished at the web server layer (Apache) through some type of .htaccess command - instead of using PHP? – TeddyTom Jun 17 '09 at 4:49
feedback

bump

Found this site recently, http://detectmobilebrowser.com/ Seems to do a regular expression check for commonly known sequences of text in the UA string.

Provides code samples for various languages too.

link|improve this answer
7  
Isn't this a duplicate of the second highest voted answer? – Yi Jiang Feb 12 '11 at 16:19
feedback

I put this demo with scripts and examples included together:

http://www.mlynn.org/2010/06/mobile-device-detection-and-redirection-with-php/

This example utilizes php functions for user agent detection and offers the additional benefit of permitting users to state a preference for a version of the site which would not typically be the default based on their browser or device type. This is done with cookies (maintained using php on the server-side as opposed to javascript.)

Be sure to check out the download link in the article for the examples.

Hope you enjoy!

link|improve this answer
feedback

Regarding Mobile Device Browser File:

Quote: "Due to the organizational restructuring of the team that developed and supported the Mobile Device Browser file, we will no longer have the resources to support and update this CodePlex project. The team will be providing two more releases – one on the 27th July 2010 and the final release on the 24th August 2010."

link|improve this answer
feedback

There's a brand new solution using Zend Framework. Start from the link to Zend_HTTP_UserAgent:

http://framework.zend.com/manual/en/zend.http.html

link|improve this answer
feedback

In Perl it's easy:

use CGI::Info;

my $info = CGI::Info->new();

if($info->is_mobile()) {
 .....
}
link|improve this answer
feedback

I found a great site http://deviceatlas.com/downloads

That wrote an api in 5 languages, php, .net , java ...

After a free registration you can download the code with json file (need to update this file often).

A try it, its work very fast for THOUSANDS calls in one second.

link|improve this answer
I'll note that DeviceAtlas (and others) apparently was (is?) selling the WURFL database, leading to the change in license terms for WURFL. 8/30/11 announcement here: tech.groups.yahoo.com/group/wmlprogramming/message/34311 – fencepost Feb 15 at 23:43
feedback

You haven't said what language you're using. If it's Perl then it's trivial:

use CGI::Info;

my $info = CGI::Info->new();

if($info->is_mobile()) {
   # Add mobile stuff
}

unless($info->is_mobile()) {
   # Don't do some things on a mobile
}
link|improve this answer
feedback

MobileESP has PHP, Java, APS.NET (C#), Ruby and JavaScript hooks. it has also the Apache 2 licence, so free for commercial use. Key thing for me is it only identifies browsers and platforms not screen sizes and other metrics, which keeps it nice an small.

link|improve this answer
feedback

for ANDROID , IPHONE, IPAD, BLACKBERRY, PALM, etc...

 < script language="javascript"> <!--
     var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
              if (mobile) {
                  alert("MOBILE DEVICE DETECTED");
                  document.write("<b>----------------------------------------<br>")
                  document.write("<b>" + navigator.userAgent + "<br>")
                  document.write("<b>----------------------------------------<br>")
                  var userAgent = navigator.userAgent.toLowerCase();
                  if ((userAgent.search("android") > -1) && (userAgent.search("mobile") > -1))
                         document.write("<b> ANDROID MOBILE <br>")
                   else if ((userAgent.search("android") > -1) && !(userAgent.search("mobile") > -1))
                       document.write("<b> ANDROID TABLET <br>")
                   else if ((userAgent.search("blackberry") > -1))
                       document.write("<b> BLACKBERRY DEVICE <br>")
                   else if ((userAgent.search("iphone") > -1))
                       document.write("<b> IPHONE DEVICE <br>")              
                   else if ((userAgent.search("ipod") > -1))
                       document.write("<b> IPOD DEVICE <br>")
               else if ((userAgent.search("ipadd") > -1))
                       document.write("<b> IPAD DEVICE <br>")
                       else
                   document.write("<b> UNKNOW DEVICE <br>")
              }
              else
                  alert("NO MOBILE DEVICE DETECTED"); //--> </script>
link|improve this answer
feedback

We use one of the many handset detection web services out there. We chose handsetdetection.com as they also provide stats / analytics.

Just google "handset detection" and all the providers come up!

link|improve this answer
1  
That would mean for ever request, you are having to place a call over the wire and creating a dependency on an external service for which you have no control. – Piyush Sep 20 '11 at 21:01
feedback

For the record, DeviceAtlas isn’t based on WURFL but we did use data from it in the past, in addition to data from our many other data partners (listed on our site). DeviceAtlas uses a completely different data structure, API and pretty much everything else compared with WURFL. You can view our device property list here (including some useful HTML5 properties), in this case a Galaxy S2: http://deviceatlas.com/node/2410065

link|improve this answer
feedback

protected by Community Feb 1 at 23:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.