I\'m wondering if it\'s possible to detect whether a browser is running on iOS, similar to how you can feature detect with Modernizr (although this is obviously device detec
This sets the variable _iOSDevice to true or false
_iOSDevice
_iOSDevice = !!navigator.platform.match(/iPhone|iPod|iPad/);