All elements (including div and img) are ready as soon as DOMReady fires - that's what it means.
However, you can use the load() event to run some code when an img tag has fully loaded the image in it's src attribute:
$('img').load(function() {
console.log('image loaded');
});