Any ideas why I require a timeout of at least 300ms for imagesLoaded to work on Firefox? If I set it any less, the imagesLoaded event fires immediately before the image has loaded. I am using the latest version 3.1.x.
<html>
<script src="bower_components/jquery/jquery.min.js"></script>
<script src="bower_components/imagesloaded/imagesloaded.pkgd.js"></script>
<head>
</head>
<body>
<div id=myimage><img style="height:100px" src="http://www.worldcarwallpapers.com/wp-content/uploads/2013/07/new-2014-audi-r8-wallpaper.jpg"/></div>
<script>
$(document).ready(function(){
setTimeout(function(){
var elem = $("#myimage");
elem.imagesLoaded(function(){
alert("ready!!")
});
}, 100)
})
</script>
</body>
</html>
In the documentation of this library, author use it in a different way (here). The problem is probably when the library starts, on page load maybe, its not clear. I don't think you should use a library for one image. You can add this in your head
And then on body load attach your event, like this:
This will not work on an image load error.