1. function detectingSystem() {
    2. var u = navigator.userAgent;
    3. if (u.indexOf("Android") > -1 || u.indexOf("Linux") > -1) {
    4. return true;
    5. } else if (u.indexOf("iPhone") > -1) {
    6. return false;
    7. }

    }