Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Masonry not working >.< Re: Masonry not working >.<

#103513
Taufik Nurrohman
Participant

You have declared masonry twice:

/*        $('#posts').masonry({
itemSelector: '.post'
}); REMOVE */

$(window).load(function() {
$('#posts').masonry({
itemSelector: '.post',
isAnimated: true,
isFitWidth: true
});
});

?????