flurin-d
3/9/2016 - 3:44 PM

Checks if window size is lower than 800px and if is Touch Device

Checks if window size is lower than 800px and if is Touch Device

/* DEFINE TOUCH-DEVICE
/----------------------------*/
var $root = $('html');
var isTouch = 'ontouchstart' in document.documentElement;

if (isTouch) {
	$root.attr('data-touch', 'true');
} else {
	$root.attr('data-touch', 'false');
}

/* CHECK WIDTH & TOUCH
/----------------------------*/
var $width = jQuery(window).width();
if ($width < 800 || isTouch) {
	// stuff
}