Alle Marken von A bis Z
Alle Marken anzeigen
$(".legend").on("click", "button", function () {
var id = $(this).attr("id").replace("b_", "m_");
$(".legend button").removeClass("active");
$(this).toggleClass("active");
$(".manu > div").hide().removeClass("active");
$("#" + id).show().addClass("active");
if ($("body.touch").length) {
$("html, body").animate({
scrollTop: $(".manufacturer .manu").offset().top - 50
}, 500);
}
$(".show-brands").show();
});
$(".show-brands").click(function () {
$(".manu > div").show().removeClass("active");
$(".legend button").removeClass("active");
$(".show-brands").hide();
});
$(".manu > div").each(function () {
$(this).addClass("ready");
if ($(this).find("a").length === 0) {
$(this).remove();
}
});