Is it possible to detect when all images are loaded via a jQuery event?
Ideally, there should be a
$(document).idle(function() { }
If you want to check for not all images, but a specific one (eg. an image that you replaced dynamically after DOM is already complete) you can use this:
$('#myImage').attr('src', 'image.jpg').on("load", function() { alert('Image Loaded'); });