Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Один ответ

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

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'; }); });