/*=========== Touch support detection ===========*/ (function detect_touch_support(){ if ("ontouchend" in document) { $('html').addClass('touch'); } else { $('html').addClass('no-touch'); } }());