Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know a lot of JavaScript libraries are depending on "ontouchstart" to detect if it's on tablet or a desktop.

Here's an example of code I'm talking about:

    var hasTouch = ("ontouchstart" in window);

For now, I had to comment out all the tablet detection code for it to work.

What would be the best way of detecting a tablet vs a desktop?

Thanks!

share|improve this question
Related: stackoverflow.com/questions/8764020/… – epascarello Sep 28 '12 at 14:37
3  
The accepted solution is exactly what's broken. – Simon Germain Sep 28 '12 at 15:15
Do you have a way to reproduce this? "ontouchstart" in window returns false for me in Chrome 24 – WildlyInaccurate Feb 11 at 13:28
That's interesting. I guess they fixed the issue, which is great! – Simon Germain Feb 11 at 17:54
1  
For what it's worth, Desktops can have touchscreens too. This looks to me like you're testing for the wrong thing. – Aren Feb 15 at 22:44
show 1 more comment

1 Answer

up vote 2 down vote accepted

To see if its a mobile platform I've used this

var iPadAgent = navigator.userAgent.match(/iPad/i) != null;
var iPodAgent = navigator.userAgent.match(/iPhone/i) != null;
var AndroidAgent = navigator.userAgent.match(/Android/i) != null;
var webOSAgent = navigator.userAgent.match(/webOS/i) != null;

var isMobile = iPadAgent || iPodAgent || AndroidAgent || webOSAgent;

It works pretty well.

share|improve this answer
Well ... there's also Blackberry, for example. This is exactly what's wrong with browser sniffing. – Joachim Sauer Feb 20 at 16:30
That's a good idea! Thanks for the suggestion! – Simon Germain Feb 21 at 22:05

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.