entropia
10/4/2017 - 12:14 PM

Checking if user is on mobile device

Check if the user is on mobile, and distinguish on which one.

//Function isMobile to see if user is on mobile
    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());
        }
    };

//Function call isMobile with if
jQuery(document).ready(function() {
	if ( isMobile.any() )  {
		//do something
	} else {
		//do something else
	}
});