function getPlatformType() { if(navigator.userAgent.match(/mobile/i)) { return 'Mobile'; } else if (navigator.userAgent.match(/iPad|Android|Touch/i)) { return 'Tablet'; } else { return 'Desktop'; } }