Showing 13–24 of 25 results

SPECIAL OFFERS & TOP PICKS

jQuery(document).ready(function($) { // Đảm bảo click trên vẫn hoạt động $(document).on('click', '.accordion .accordion-title', function(e) { e.preventDefault(); var $item = $(this).closest('.accordion-item'); var $content = $item.find('.accordion-inner'); // Toggle trạng thái $item.toggleClass('active'); $content.slideToggle(); }); });