I\'m a js newbie and hope this questions doesn\'t seem too stupid.
I\'m using masonry for my site - works fine. I wanted to let my boxes appear just when masonry fin
Another solution is to initialize Masonry inside $(window).load() instead of $(document).ready(). This will trigger Masonry after all the media on the page has loaded – images, fonts, external scripts and stylesheets, etc.
$(window).load(function(){ $('#container').masonry({ // options... }); });