I have a website that, when accessed by a mobile browser, to redirect to a different page.
I have been having trouble coming up with a way that reliably detects mobile devices. Currently, I Javascript code like this:
if (document.documentElement.clientWidth < 680 ||
document.documentElement.clientHeight < 450)
location.href = "handheld.aspx";
that redirects if the broswer size is smaller than what is supported on the desktop version. The problem with this is that some mobile browsers start zoomed way out and have the similar browser dimensions as desktop devices.
I've researched this some, and I've mainly found solutions that involve sniffing the user agent sting and checking it against a bunch of strings in existing mobile devices. If possible, I'd like to avoid that route because it seems extremely messy and will break in the future when new devices come out.
Is there a less kludgy way to detect mobile browsers, or at least a more reliable way to detect screen size?
window.screen.width. If you look at the list of related questions you'll see this has been asked before. Make sure your page for mobiles has a link to go back to the full site (and, ideally, use a cookie or something to remember which users went back to the full site so they don't have to do it manually every time). – nnnnnn Jan 12 '12 at 2:02