I am not a fan of User Agent sniffing, but here is how you would do it:
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false );
( iOS will be either true or false. )
Another method without using Regular Expressions:
var iOS = false,
p = navigator.platform;
if( p === 'iPad' || p === 'iPhone' || p === 'iPod' ){
iOS = true;
}
Optimised to easily add more devices:
var i = 0,
iOS = false,
iDevice = ['iPad', 'iPhone', 'iPod'];
for ( ; i < iDevice.length ; i++ ) {
if( navigator.platform === iDevice[i] ){ iOS = true; break; }
}
The most common way of detecting the iOS version is by parsing it from the User Agent string.
Another way is feature detection inference (*);
We know that history API was introduced in iOS4+, and that matchMedia API in iOS5+,
and so on..
Note: The following code is not reliable and will break if any of these HTML5 features is depreciated in a newer iOS version. You have been warned!
var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false ),
iOSversion = false;
if( iOS ){
iOSversion = ( !!window.history && !!window.history.pushState ? '4+' : '4-' );
if( !!window.matchMedia ){ iOSversion = '5+'; }
}