Jps21
6/7/2019 - 1:49 PM

Device Detection

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