Кто-то может сказать мне, что это значит
Uncaught TypeError: $.getCoords is not a function
Я копирую код JS, чтобы добавить какой-то тип аккордеона на мой сайт. Он работает в Desktop, но Mobile, кнопка нажатия Accordion показывает мне ошибку выше.
Это код:
$(document).ready(function() {
function f(t) {
$(".produktauswahl_buehne").is(":visible") || ($(t).hasClass("open") ? (n = $.getCoords($(".produktauswahl_headline.open")).top, $([document.documentElement, document.body]).animate({
scrollTop: n - window.SiteInformation.headerHeight
}, 200, function() {
$(t).removeClass("open");
$(t).next(".produktauswahl_eintrag_content").hide()
})) : ($(".produktauswahl_headline").removeClass("open"), $(".produktauswahl_headline").next(".produktauswahl_eintrag_content").hide(), $(t).addClass("open"), $(t).next(".produktauswahl_eintrag_content").show(), n = $.getCoords($(".produktauswahl_headline.open")).top, $(".magic-line").length === 0 && (n = n - $("header").height()), $.each($("img", $(t).next(".produktauswahl_eintrag_content")), function() {
$(this).data("src") !== undefined && $(this).attr("src", $(this).data("src"))
}), $(".produktauswahl_buehne").html($(t).next(".produktauswahl_eintrag_content").html()), n !== null && n !== undefined && (document.body.scrollTop > n || document.documentElement.scrollTop > n) && $([document.documentElement, document.body]).animate({
scrollTop: n - window.SiteInformation.headerHeight
}, 200)))
}
}