I am trying to use some ajax and the jQuery Masonry plugin to add some items - but for some reason the new items aren\'t getting the masonry applied ?
I\'m using
You are missing Masonry layout call. According to the docs you need to refresh the layout, executing .masonry() after every change (for instance .masonry('appended')):
.masonry()
.masonry('appended')
$grid.masonry() .append(elem) .masonry('appended', elem) // layout .masonry();
(source: http://masonry.desandro.com/methods.html)