Is it possible to detect when all images are loaded via a jQuery event?
Ideally, there should be a
$(document).idle(function()
{
}
I created my own script, because I found many plugins to be quite bloated, and I just wanted it to work the way I wanted. Mine checks to see if each image has a height (native image height). I've combined that with the $(window).load() function to get around the issues of caching.
I've code commented it quite heavily, so it should be interesting to look at, even if you don't use it. It works perfectly for me.
Without further ado, here it is:
imgLoad.js script