Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a solid way to detect whether or not a user is using a mobile/handheld device in jQuery? Something similar to the css media attribute? I would like to run a different script if the browser is on a handheld device.

The jQuery $.browser function is not what I am looking for.

share|improve this question
Provide a mobile URL specifically for mobile devices. This is how most major sites handle mobile devices. See m.google.com. – meagar Aug 18 '10 at 17:27
2  
jQuery does not, and cannot do everything. It is provides cross-browser DOM traversal and manipulation, simple animation and ajax between browsers, and creates a skeleton framework for plugins to build upon. Please be aware of jQuery's limitations before asking specifically for a jQuery solution. – Yi Jiang Aug 22 '10 at 5:38
1  
I just noticed that Modernizr supports "CSS3 like" Media Queries: modernizr.com/docs/#mq – Bart Aug 10 '11 at 21:32
9  
User agents are constantly moving targets, everyone reading this post should be very wary of user agent sniffing – Rob Jan 9 '12 at 10:38

24 Answers

up vote 314 down vote accepted

Instead of using jquery you can use simple javascript to detect it:

if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
 // some code..
}
share|improve this answer
68  
You can combine them like this: var isMobile = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/); – aximili Jan 3 '12 at 4:41
26  
User agent sniffing is a very noddy detection technique, user agent strings are a constant moving target, they should not be trusted alone. People up-voting this post should consider researching more. – Rob Jan 9 '12 at 10:42
37  
Stop upvoting @aximili and use (/iPhone|iPod|iPad|Android|BlackBerry/).test(navigator.userAgent) , which uses test for less overhead and removes unnecessary parens in the regex – Andy Ray May 28 '12 at 19:39
6  
One of the problems with sniffing for just specific devices out of the user agent is that you have to remember to update your detection when new devices come out. This isn't an ideal solution. – ICodeForCoffee Nov 28 '12 at 17:26
5  
If your user is crafty enough or the developers dumb enough to change the user agent string, who cares about them... – mattdlockyer Mar 22 at 17:02
show 13 more comments

For me small is beautiful so i'm using this technique:

In CSS file:

/* Smartphones ----------- */
@media only screen and (max-width: 760px) {
  #some-element { display: none; }
}

In jQuery/Javascript file:

jQuery(document).ready(function($) {  

    var $is_mobile = false;

    if( $('#some-element').css('display') == 'none' ) {
        $is_mobile = true;      
    }

    // now i can use $is_mobile to run javascript conditionally
 });

My objective was to have my site "mobile friendly". So i use CSS Media Queries do show/hide elements depending on the screen size.

For example, in my mobile version i don't want to activate the Facebook Like Box, because it loads all those profile images and stuff. and that's not good for mobile visitors. So, besides hiding the container element, i also do this inside the jQuery code block (above):

if(!$is_mobile) {
    (function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//connect.facebook.net/pt_PT/all.js#xfbml=1&appId=210731252294735";
        fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));
}

You can see it in action at http://lisboaautentica.com

I'm still working on the the mobile version, so it's still not looking as it should, as of writing this.

share|improve this answer
Yes this is what I was thinking of as well, and it is great solution. Unfortunately I am working now on project where I need to know exactly what device OS it is and have to use more JS for that... thumbs up for good solution though – Tom Jul 31 '12 at 9:27
Don't you need #some-element ACTUALLY IN THE DOM for this to work? – Rimer Sep 21 '12 at 2:26
Yes Rimer. <div id="some-element"></div> needs to exist in the DOM. – Gonçalo Peres Oct 3 '12 at 14:37
1  
-1 The screen.width property is a global. There's no need to arbitrarily add an element to the DOM and unnecessarily bring in CSS media queries. Plus, if the browser is on a desktop and the user resizes the window, $is_mobile is not going to be updated. – merv Nov 9 '12 at 15:46
1  
Why not: if( screen.width <= 480 ) { // is mobile } – andrewrjones Jan 20 at 1:05
show 3 more comments

What you are doing by wanting to detect a mobile device is getting a little too close to a "browser sniffing" concept IMO. It would likely be much better to do some feature detection. Libraries like http://www.modernizr.com/ can help with that.

For example, where is the line between mobile and non-mobile? It gets more and more blurry every day.

share|improve this answer
2  
still, a user could want to use "jquery mobile" for those devices, whatever the supported features. – Sirber Oct 27 '11 at 20:01
6  
For example, my issue with "mobile" "non-mobile" is my rollover features, I have JS set up to turn off the features, just need to detect – thantos Dec 21 '11 at 21:18
3  
Still, if you want to offer a device-specific downloadable app it can be useful. – Bastes May 25 '12 at 16:31
2  
It depends on the situation, I'm looking for something that will tell me if the user is on a mobile device, so that I can disable some heavy JavaScript based animations. UA sniffing would be much more appropriate than trying to 'detect' the JavaScript performance capabilities of the user's browser. – ricksuggs Jun 1 '12 at 15:18
3  
Mobile vs non-mobile is a very big distinction, just using "feature detection" is stupid when you're trying to cater interactions/ui for a mobile/desktop experience. Personally, I wish that there was an easy (and reliable) way to get the OS that the current browser is running in – nbsp Jan 24 at 21:52
show 4 more comments

It's not jQuery, but I found this: http://detectmobilebrowser.com/

It provides scripts to detect mobile browsers in several languages, one of which is javascript. That may help you with what you're looking for.

However, since you are using jQuery, you might want to be aware of the jQuery.support collection. It's a collection of properties for detecting the capabilities of the current browser. Documentation is here: http://api.jquery.com/jQuery.support/

Since I don't know what exactly what you're trying to accomplish, I don't know which of these will be the most useful.

All that being said, I think your best bet is to either redirect or write a different script to the output using a server-side language (if that is an option). Since you don't really know the capabilities of a mobile browser x, doing the detection and alteration logic on the server side would be the most reliable method. Of course, all of that is a moot point if you can't use a server side language :)

share|improve this answer
2  
that does not support iPads. To support iPad, look for ip(hone|od) and "|ad" - e.g. ip(hone|od|ad) – Jayson Ragasa Jul 15 '12 at 10:31

Sometimes it is desired to know which brand device a client is using in order to show content specific to that device, like a link to the iPhone store or the Android market. Modernizer is great, but only shows you browser capabilities, like HTML5 or Flash.

Here is my UserAgent solution in jQuery to display a different class for each device type:

/*** sniff the UA of the client and show hidden div's for that device ***/
var customizeForDevice = function(){
    var ua = navigator.userAgent;
    var checker = {
      iphone: ua.match(/(iPhone|iPod|iPad)/),
      blackberry: ua.match(/BlackBerry/),
      android: ua.match(/Android/)
    };
    if (checker.android){
        $('.android-only').show();
    }
    else if (checker.iphone){
        $('.idevice-only').show();
    }
    else if (checker.blackberry){
        $('.berry-only').show();
    }
    else {
        $('.unknown-device').show();
    }
}

This solution is from Graphics Maniacs http://graphicmaniacs.com/note/detecting-iphone-ipod-ipad-android-and-blackberry-browser-with-javascript-and-php/

share|improve this answer
This works great. I needed to disable a jQuery function that runs on scrolling when using an iPad or Android phone and since the various devices have differing screen widths, this was a simple solution. Thanks a ton. – allenericr Sep 15 '11 at 15:04

If you're not particularly worried about small displays you could use width/height detection. So that way if width is under a certain size, the mobile site is thrown up. It may not be the perfect way, but it will probably be the easiest to detect for multiple devices. You may need to put in a specific one for the iPhone 4 (large resolution).

share|improve this answer

Found a solution in: http://www.abeautifulsite.net/blog/2011/11/detecting-mobile-devices-with-javascript/.

var isMobile = {
    Android: function() {
        return navigator.userAgent.match(/Android/i);
    },
    BlackBerry: function() {
        return navigator.userAgent.match(/BlackBerry/i);
    },
    iOS: function() {
        return navigator.userAgent.match(/iPhone|iPad|iPod/i);
    },
    Opera: function() {
        return navigator.userAgent.match(/Opera Mini/i);
    },
    Windows: function() {
        return navigator.userAgent.match(/IEMobile/i);
    },
    any: function() {
        return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
    }
};

And then to verify if its a Mobile, you can test using:

if(isMobile.any()) {
   //some code...
}
share|improve this answer

Check out this post, it gives a really nice code snippet for what to do when touch devices are detected or what to do if touchstart event is called:

$(function(){
  if(window.Touch) {
    touch_detect.auto_detected();
  } else {
    document.ontouchstart = touch_detect.surface;
  }
}); // End loaded jQuery
var touch_detect = {
  auto_detected: function(event){
    /* add everything you want to do onLoad here (eg. activating hover controls) */
    alert('this was auto detected');
    activateTouchArea();
  },
  surface: function(event){
    /* add everything you want to do ontouchstart here (eg. drag & drop) - you can fire this in both places */
    alert('this was detected by touching');
    activateTouchArea();
  }
}; // touch_detect
function activateTouchArea(){
  /* make sure our screen doesn't scroll when we move the "touchable area" */
  var element = document.getElementById('element_id');
  element.addEventListener("touchstart", touchStart, false);
}
function touchStart(event) {
  /* modularize preventing the default behavior so we can use it again */
  event.preventDefault();
}
share|improve this answer
'ontouchstart' in document.documentElement is probably a better test for touch support than window.Touch. Even better, use Modernizr.js (modernizr.com) because have spent a lot of thought trying to get touch detection right. You can see their touch detection code in modernizr.com/downloads/modernizr.js if you view the development code and search on "touch". – robocat Sep 13 '12 at 1:44

Here's a function you can use to get a true/false answer as to whether you're running on a mobile browser. Yes, it is browser-sniffing, but sometimes that is exactly what you need.

function is_mobile() {
    var agents = ['android', 'webos', 'iphone', 'ipad', 'blackberry'];
    for(i in agents) {
        if(navigator.userAgent.match('/'+agents[i]+'/i')) {
            return true;
        }
    }
    return false;
}
share|improve this answer
1  
That will fail to detect many mobile browsers, especially mobile Chrome. It will also probably fail on some of: Opera Mobile, Firefox mobile, Opera Mini, various popular Chinese mobile browsers, etc etc. – robocat Sep 13 '12 at 1:37

Great answer thanks. Small improvement to support windows phone and Zune:

        if (navigator.userAgent.match(/Android/i) ||
             navigator.userAgent.match(/webOS/i) ||
             navigator.userAgent.match(/iPhone/i) ||
             navigator.userAgent.match(/iPad/i) ||
             navigator.userAgent.match(/iPod/i) ||
             navigator.userAgent.match(/BlackBerry/) || 
             navigator.userAgent.match(/Windows Phone/i) || 
             navigator.userAgent.match(/ZuneWP7/i)
             ) {
                // some code
                self.location="top.htm";
               }
share|improve this answer
I would say this is the simplest (maybe not best) fix if you are trying to handle hover/dragging events for mobile devices. I use something like this to create a "isMobile" boolean that is then checked for every hover/mouseover event. Thats my two cents, anyways. Adding more js libraries or code that requires user interaction doesn't make too much sense to me; correct me if I am wrong though. – mattelliottIT Mar 1 '12 at 0:54

Here's good thing for some languages: http://detectmobilebrowsers.com/

share|improve this answer
worked! thanks! – Jayson Ragasa Jul 11 '12 at 6:00

If by "mobile" you mean "small screen," I use this:

var windowWidth = window.screen.width < window.outerWidth ?
                  window.screen.width : window.outerWidth;
var mobile = windowWidth < 500;

On iPhone you'll end up with a window.screen.width of 320. On Android you'll end up with a window.outerWidth of 480 (though that can depend on the Android). iPads and Android tablets will return numbers like 768 so they'll get the full view like you'd want.

share|improve this answer

You can't rely on navigator.userAgent, not every device reveales its real OS. On my HTC for example, it depends on the settings ("using mobile version" on/off). On http://my.clockodo.com, we simply used screen.width to detect small devices. Unfortunately, in some android versions there's a bug with screen.width. You can combine this way with the userAgent:

if(screen.width < 500 ||
 navigator.userAgent.match(/Android/i) ||
 navigator.userAgent.match(/webOS/i) ||
 navigator.userAgent.match(/iPhone/i) ||
 navigator.userAgent.match(/iPod/i) {
alert("This is a mobile device");
}
share|improve this answer
var device = {
  detect: function(key) {
    if(this['_'+key] === undefined) {
      this['_'+key] = navigator.userAgent.match(new RegExp(key, 'i'));
    }
    return this['_'+key];
  },
  iDevice: function() {
    return this.detect('iPhone') || this.detect('iPod');
  },
  android: function() {
    return this.detect('Android');
  },
  webOS: function() {
    return this.detect('webOS');
  },
  mobile: function() {
    return this.iDevice() || this.android() || this.webOS();
  }
};

I've used something like this in the past. This is similar to a previous response, but it's technically more performant in that it caches the result of the match, especially if the detection is being used in an animation, scroll event, or the like.

share|improve this answer

Here's what I use:

if (navigator.userAgent.match(/mobile/i)) {
  // do something
}
share|improve this answer

You could use bacon.js

it is plain javascript and only half a couple of KB uncompressed: https://github.com/tajjyarden/bacon.js

share|improve this answer

You can also detect it like bellow

$.isIPhone = function(){
    return ((navigator.platform.indexOf("iPhone") != -1) || (navigator.platform.indexOf("iPod") != -1));

};
$.isIPad = function (){
    return (navigator.platform.indexOf("iPad") != -1);
};
$.isAndroidMobile  = function(){
    var ua = navigator.userAgent.toLowerCase();
    return ua.indexOf("android") > -1 && ua.indexOf("mobile");
};
$.isAndroidTablet  = function(){
    var ua = navigator.userAgent.toLowerCase();
    return ua.indexOf("android") > -1 && !(ua.indexOf("mobile"));
};
share|improve this answer

To add an extra layer of control I use the HTML5 storage to detect if it is using mobile storage or desktop storage. If the browser does not support storage I have an array of mobile browser names and I compare the user agent with the browsers in the array.

It is pretty simple. Here is the function:

// Used to detect whether the users browser is an mobile browser
function isMobile() {
    ///<summary>Detecting whether the browser is a mobile browser or desktop browser</summary>
    ///<returns>A boolean value indicating whether the browser is a mobile browser or not</returns>

    if (sessionStorage.desktop) // desktop storage 
        return false;
    else if (localStorage.mobile) // mobile storage
        return true;

    // alternative
    mobile = ['iphone','ipad','android','blackberry','nokia','opera mini','windows mobile','windows phone','iemobile']; 
    for (var i in mobile) if (navigator.userAgent.toLowerCase().indexOf(mobile[i].toLowerCase()) > 0) return true;

    // nothing found.. assume desktop
    return false;
}
share|improve this answer

I use this

if(navigator.userAgent.search("mobile")>0 ){
         do something here

}

share|improve this answer

You could also use server side script and set javascript variables from it.

Example in php

download http://code.google.com/p/php-mobile-detect/ and then set javascript variables.

<script>
//set defaults
var device_type = 'desktop';
</script>

<?php
require_once( 'Mobile_Detect.php');
$detect = new Mobile_Detect();
?>

<script>
device_type="<?php echo ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'mobile') : 'desktop'); ?>";
alert( device_type);
</script>
share|improve this answer

If found that just checking navigator.userAgent isn't always reliable. Greater reliability can be achieved by also checking navigator.platform. A simple modification to a previous answer seems to work better:

if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ||
   (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.platform))) {
    // some code...
}
share|improve this answer

Also I recommend using the tiny javascript library Bowser, yes no r. It is based on the navigator.userAgent and quite well tested for all browsers including iphone, android etc.

https://github.com/ded/bowser

You can use simply say:

if (bowser.msie && bowser.version <= 6) {
  alert('Hello China');
} else if (bowser.firefox){
  alert('Hello Foxy');
} else if (bowser.chrome){
  alert('Hello Silicon Valley');
} else if (bowser.safari){
  alert('Hello Apple Fan');
} else if(bowser.iphone || bowser.android){
  alert('Hello mobile');
}
share|improve this answer

http://www.mnking.net/2013/04/how-to-detect-mobile-device-in.html

This is the best solution

function is_mobile(){
  if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
    return true;
  }
  return false;
 }
share|improve this answer

If you want to test the user agent, the correct way is to, test the user agent, i.e. test navigator.userAgent.

If the user fakes this they are not due concern. If you test.isUnix() you should not subsequently have to worry if the system is unix.

As a user changing userAgent is also fine, but yuo don't expect sites to render properly if you do.

If you wish to provide support for Microsoft browsers you should ensure the first few chars of the content includes and test every page you write.

Bottom line... Always code to the standards. Then hack it till it works in the current version of IE & dont expect it to look good. Thats what github does, and they just got given 100 million bucks.

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.