adding a class touchscreen to the body using JS or jQuery
//allowing mobile only css var isMobile = ('ontouchstart' in document.documentElement && navigator.userAgent.match(/Mobi/)); if(isMobile){ jQuery("body").attr("class",'touchscreen'); }