I have a container that has some images inside, I want to listen to the event of every image finish loaded.
eg)
<
$('#container img').load(function() { // ... });
You'll want to set that up pretty close to the point at which the elements are introduced to the DOM, or else they might be loaded before you manage to attach the event handler.