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 that most people try to avoid Javascript mobile detection because not all mobile browsers support it, but I am using it in a Javascript function so if the browser doesn't support Javascript, it doesn't matter if it's mobile since it won't be able to use the function. I don't want it to redirect; just to return whether the browser is mobile or not. Any ideas?

share|improve this question
2  
What do you mean by, "return"? What is it in particular about a device's "mobileness" that's interesting to you? – Pointy Dec 23 '10 at 16:10
I mean I want something along the lines of function isMobile() that returns true if it is mobile or false if it is not. As for the "mobileness", I am specifically trying to find touch screen mobile devices. The function I am working on is a "tooltip" function, and I'd either want to change the displaying of the tooltip to only on the click of the question mark icon or even disable it all together and not even display the icon. – Zak Dec 23 '10 at 16:16
Most mobile browsers support JavaScript nowadays. You probably not want to detect mobile browsers, but JavaScript-less browsers. The best solution would be build your site to work with any JavaScript at all, and then add JavaScript for additional features on top. – RoToRa Dec 23 '10 at 16:21

3 Answers

You can use handsetdetection.com to detect mobile browsers in javascript. We do a detection based on the http headers and send javascript to the client. (disclaimer, i work there).

share|improve this answer
var mobile =  ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch;

in modernizr ,it is like this.

share|improve this answer

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.