Доброго времени суток форумчане! Подскажите пожалуйста, сам не могу разобраться почему они не работают.
Вот карточка товара _https://lik-astana.kz/poligraficheskie-uslugi/kserokopirovanie/cherno-belaya-kopiya-detail.html тут карты не работают.
Вот категория где лежит эта карточка _https://lik-astana.kz/poligraficheskie-uslugi/kserokopirovanie.html тут уже карты работают.
Пробовал следующие, был вот такой код
(function ($) {
var jump = function (e) {
if (e) {
e.preventDefault();
var target = $(this).attr("href");
} else {
var target = location.hash;
}
$('html,body').animate({
scrollTop: $(target).offset().top
}, 1000, function () {
location.hash = target;
});
}
$('html, body').hide();
$(document).ready(function () {
$('a[href^=#contact]').bind("click", jump);
if (location.hash) {
setTimeout(function () {
$('html, body').scrollTop(0).show()
jump();
}, 0);
} else {
$('html, body').show();
}
});
})(jQuery)
Заменил вот так
(function (jQuery) {
var jump = function (e) {
if (e) {
e.preventDefault();
var target = $(this).attr("href");
} else {
var target = location.hash;
}
jQuery('html,body').animate({
scrollTop: jQuery (target).offset().top
}, 1000, function () {
location.hash = target;
});
}
jQuery('html, body').hide();
jQuery(document).ready(function () {
jQuery('a[href^=#contact]').bind("click", jump);
if (location.hash) {
setTimeout(function () {
jQuery('html, body').scrollTop(0).show()
jump();
}, 0);
} else {
jQuery('html, body').show();
}
});
})(jQuery)
Карты не заработали.
Сам не могу разобраться в чем проблема, виноват ли этот код или в чем-то еще.
Скрин на карты прилагаю