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
var isiOSSafari = (navigator.userAgent.match(/like Mac OS X/i)) ? true: false;