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.

link|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
3  
User agents are constantly moving targets, everyone reading this post should be very wary of user agent sniffing – Rob Jan 9 at 10:38
feedback

16 Answers

up vote 20 down vote accepted

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.

link|improve this answer
1  
still, a user could want to use "jquery mobile" for those devices, whatever the supported features. – Sirber Oct 27 '11 at 20:01
4  
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
+1 for the last point! The clients on handheld and desktop devices are behaving more alike with every passing day. – Filip Dupanović Feb 26 at 21:01
Still, if you want to offer a device-specific downloadable app it can be useful. – Bastes yesterday
feedback

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

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/i)
 ){
 // some code..
}
link|improve this answer
1  
ipad would be navigator.userAgent.match(/iPad/i) ? – Rafael Roman Sep 12 '11 at 16:07
Yes. The (String).match regular expression test checks for the presence of "iPad" in the user agent string. – sweets-BlingBling Sep 16 '11 at 10:38
what about blackberry? – mkram0 Nov 10 '11 at 22:34
32  
You can combine them like this: var isMobile = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/); – aximili Jan 3 at 4:41
4  
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 at 10:42
show 1 more comment
feedback

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 :)

link|improve this answer
feedback

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/

link|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. – ericissocial Sep 15 '11 at 15:04
feedback

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).

link|improve this answer
feedback

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;
}
link|improve this answer
feedback

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();
}
link|improve this answer
feedback

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";
               }
link|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 at 0:54
feedback

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.

link|improve this answer
feedback

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");
}
link|improve this answer
feedback

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

link|improve this answer
feedback
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.

link|improve this answer
feedback

Here's what I use:

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

I use this

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

}

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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