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.