Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Last active October 17, 2016 13:22
Show Gist options
  • Save ingozoell/8ca8731362407ba677589ffa791ea89f to your computer and use it in GitHub Desktop.
Save ingozoell/8ca8731362407ba677589ffa791ea89f to your computer and use it in GitHub Desktop.
Touch Device Detection
var checkTouch = function(){
/* Touch Device Detection */
var isTouchDevice = 'ontouchstart' in document.documentElement;
var isTouchDeviceFireFoxBug = navigator.userAgent.toLowerCase().indexOf('firefox') > -1; /* Fixed FireFox Bug */
var isTouch = isTouchDevice || isTouchDeviceFireFoxBug;
if( isTouch ) {
$('html').addClass('touch');
} else {
$('html').addClass('no-touch');
}
};
checkTouch();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment