$(document).ready(function(){ $("#cookiesBanner .btn").click(function() { $("#cookiesBanner").animate({height: 0, bottom: -150}, 600); $.cookie('cookiesBan', 'show', { expires: 1, path: '/' }); return false; }); function is_touch_device() { return !!('ontouchstart' in window); } $('.topMenu > section > ul > li.catalog_item > a').click(function() { if (is_touch_device()) { return false; } }) if (is_touch_device()) { $('.drop-box').click(function() { var left = $(this).offset().left; $(this).find('.drop').css('left', (-left+20)+'px'); console.log(left); $(this).toggleClass('open'); }); } $("body").on("click", ".price .na.req", function(){ $('#sumNa').remove(); var el = $('#sumNa'); var item_id = $(this).parents('.item').attr('id'); var hint = $(this).attr('hint'); var left = $(this).offset().left; var top = $(this).offset().top; if (!el.length) { el = $(this).append("
"+hint+"
"); $('#sumNa').addClass('opened'); } // el.css('left', left+'px'); // el.css('top', top+'px'); return false; }); });