Skip to content
Advertisement

How can run a function when content of an element is loaded. Loading more items from a server

I am loading and appending more items from a server to a div. And when they are fully loaded I want to run a function that will refresh colcade layout (reloadColcade).

I have tried adding an event listener to the div with options like ‘load’ and ‘DOMContentLoaded’, divElement.addEventListner('option', reloadColcade) but the event isn’t fired.

And when I try to setTimeout to wait for elements to load either function is invoked too early or too late.

JavaScript

JavaScript

Advertisement

Answer

I solved the problem by using library imagesloaded also created by author of colcade, like that:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement