Skip to content

Instantly share code, notes, and snippets.

@robertbiswas
Created September 27, 2022 08:08
Show Gist options
  • Save robertbiswas/df96b074628abb965e47496c1d808a7d to your computer and use it in GitHub Desktop.
Save robertbiswas/df96b074628abb965e47496c1d808a7d to your computer and use it in GitHub Desktop.
Masonry Grid with Lazyload issue solved
$(document).ready(function () {
var $grid = $('.msnry-grid').masonry();
$grid.find('[loading="lazy"]').on('load', function() {
$('.msnry-grid').masonry('layout');
console.log("image loaded.");
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment