I\'ve got something I\'ve put together using jQuery isotope here.. http://jsbin.com/eziqeq/6/edit
It seems to work in general but on first load, of a new tab, the Is
Note:
1.you should call iso-top function inside windwo load event (it will wait for resources to be loaded) also you can call function in footer.
2.confirm that function call after css load.
$(window).load(function(){
$('.iso').isotope({
// options
itemSelector: '.item',
layoutMode: 'masonry'
});
});
also can use image preloader plugin for images loading first
http://www.createjs.com/#!/PreloadJS