/** * MobileDetect.system ios || android */ var MobileDetect = { init: function() { this.system = this.info(); }, info: function() { return function() { var u = navigator.userAgent; if (u.match(/(iPad|iPhone)/i)) { return 'ios'; } if (u.match(/(Android)/i)) { return 'android'; } } (); } }; MobileDetect.init();