Actions

Widget

Widget:DeviceType

From OSE

Revision as of 19:49, 30 May 2025 by Ose (talk | contribs) (Created page with "function getDeviceType() { const userAgent = navigator.userAgent.toLowerCase(); if (userAgent.includes('mobile') || userAgent.includes('android') || userAgent.includes('iphone') || userAgent.includes('ipad')) { return 'mobile'; } else if (userAgent.includes('tablet')) { return 'tablet'; } else { return 'desktop'; } }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

function getDeviceType() {

       const userAgent = navigator.userAgent.toLowerCase();
 		if (userAgent.includes('mobile') || userAgent.includes('android') || userAgent.includes('iphone') || userAgent.includes('ipad')) {
   			return 'mobile';
 		} else if (userAgent.includes('tablet')) {
   			return 'tablet';
 		} else {
   			return 'desktop';
 		}

}