jQuery(document).ready(function($) {
if ($(window).width() < 768) {
// Добавляем кнопку и контейнер
$('.beautiful-taxonomy-filters').before(`
Фильтры ▼
`);
// Переносим фильтры в контейнер
$('.btf-mobile-container').append($('.beautiful-taxonomy-filters').clone());
// Обработчик клика
$('.btf-mobile-toggle').click(function() {
$('.btf-mobile-container').slideToggle();
$(this).text(function(i, text) {
return text.includes('▼') ? 'Фильтры ▲' : 'Фильтры ▼';
});
});
}
});
document.querySelectorAll('.dropdown-toggle').forEach(toggle => {
toggle.addEventListener('click', function() {
this.classList.toggle('active');
const dropdown = this.nextElementSibling;
dropdown.style.display = dropdown.style.display === 'flex' ? 'none' : 'flex';
});
});