Ergebnisse filtern
$('.show-filter, #closeFilters, .filter-overlay').on('click',function(){$('body').toggleClass('filter-open')});$('.facet-name').on('click',function(){$(this).toggleClass('closed').next('.facet-wrap').slideToggle(400)});$('.card-columnsx > div:nth-child(n+3) .facet-name').click().addClass('closed')
1 Artikel
Filter
Ansicht
$(document).ready(function() {
$('.cross-box a.item .add2b, .cross-box a.item .wish').on('click', function(event) {
event.preventDefault();
});
var select = $('.custom-select'),
optionValue = $('.custom-select option:selected').text();
if (window.innerWidth >= 992) {
select.width(20 + (optionValue.length * 6));
} else {
select.width(20 + (optionValue.length * 5));
}
select.css('opacity', 1);
});
