I want to do:
$(\"img\").bind(\'load\', function() { // do stuff });
But the load event doesn\'t fire when the image is loaded from cache
Do you really have to do it with jQuery? You can attach the onload event directly to your image as well;
onload
It will fire every time the image has loaded, from cache or not.