I need to change out some buttons and text on a mobile website depending on whether the user is viewing it on an Android or iOS browser. Is there a reliable way to perform t
You could use the navigator object: http://www.w3schools.com/js/js_browser.asp and then use if statements based on the properties of navigator.
I have used this for awhile. Simple check to see return true or false based on is a mobile device.
var isMobile = (/Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Windows Phone/i.test(navigator.userAgent)) ? true : false;
I would use the navigator.useragent
property to get the useragent-string, parse it, and detect the OS.
Here is one example of how you can do it.
Update:
Due to the popularity of this question, I thought I would add some additional information to my answer.
In general, browser sniffing is almost never the best way to go. Why? Well, there are many reasons, but here are two good ones:
With that said, if you really really need to use browser/OS detection, then don't reinvent the wheel, and don't try to do it on your own - you will be in for a world of pain and obscure caveats! I would suggest you use a library like WhichBrowser, that will provide you with a handy JavaScript object containing information about the os, browser, rendering engine and device.
var isMobile = {
Windows: function() {
return /IEMobile/i.test(navigator.userAgent);
},
Android: function() {
return /Android/i.test(navigator.userAgent);
},
BlackBerry: function() {
return /BlackBerry/i.test(navigator.userAgent);
},
iOS: function() {
return /iPhone|iPad|iPod/i.test(navigator.userAgent);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};