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 am making an app in IOS with cordova. In cordova index.html, can i know if the device is a iphone, ipad, ipod like we use navigator.userAgent to know if the browser is a android or IOS.

I am having an ipod, and both the following conditions are coming true for it.

if(navigator.userAgent.toLowerCase().match(/iphone/))
if(navigator.userAgent.toLowerCase().match(/ipod/))

Thanks.

share|improve this question

2 Answers

try to check for

navigator.platform
share|improve this answer

Since an iPod also says its an iPhone could you check for the iPod user agent first like this:

if(navigator.userAgent.toLowerCase().match(/ipod/)) //I'm an iPod
else if(navigator.userAgent.toLowerCase().match(/ipad/)) //I'm an iPad
else if(navigator.userAgent.toLowerCase().match(/iphone/)) //I'm an iPhone

Does that work?

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.