// mobileua var mobileua = (function () { var ua = navigator.useragent.tolowercase(); var mua = { ios: /ipod|iphone|ipad/.test(ua), //ios iphone: /iphone/.test(ua), //iphone ipad: /ipad/.test(ua), //ipad android: /android/.test(ua), //android device windows: /windows/.test(ua), //windows device touch_device: ('ontouchstart' in window) || /touch/.test(ua), //touch device mobile: /mobile/.test(ua), //mobile device (ipad) android_tablet: false, //android tablet windows_tablet: false, //windows tablet tablet: false, //tablet (ipad, android, windows) smart_phone: false //smart phone (iphone, android) }; mua.android_tablet = mua.android && !mua.mobile; mua.windows_tablet = mua.windows && /tablet/.test(ua); mua.tablet = mua.ipad || mua.android_tablet || mua.windows_tablet; mua.smart_phone = mua.mobile && !mua.tablet; return mua; } ()); //smartphone // if (mobileua.smart_phone) { // document.location.href = '/mobile/index.aspx'; // }