Magento 1.9 – Collapse Filters in RWD Theme

magento-1.9rwd-theme

I have installed Magento 1.9.0.0 and have started tweaking the rwd theme. I want to collapse the filters list on product listings so that only the headers show and you can click on the header to see your options for that filter. I am far from being an expert in Magento and despite digging around in the files and googling for answers for some time I am none the wiser. Can anyone help?

Best Answer

Try This

    jQuery(document).ready(function($) {
    var dt = jQuery('#narrow-by-list dt'),
        dd = jQuery('#narrow-by-list dd');
        dt.next().hide();
        dd.first().show();
        dt.first().addClass('active');
        dt.click(function(){
            jQuery(this).toggleClass('active').next().slideToggle();
    })
    });
Related Topic