Start the Isotope with the defined class

33 Views Asked by At

I need to start the isotope by displaying only the div's that have the class "destaque".

At the moment, my script when loading, displays all loaded items from CMS, however if I click the filter button:

<li data-filter=".destaque" class="active">Todos</li>

It will display the items I want.

--

How start isotope displying just itens with this class div?

1

There are 1 best solutions below

0
On BEST ANSWER
var $gridExperiencia = $('#experiencia-grid').isotope({
        filter: '.destaque',
        itemSelector: '.element-item',
        transitionDuration: '0.7s',
        masonry: {
            gutter: 25
        }
    });

I just use filter: '.destaque',