Is it possible to detect when all images are loaded via a jQuery event?
Ideally, there should be a
$(document).idle(function() { }
$.get('http://www.your_domain.com/image.jpg', imgLoaded); function imgLoaded(){ console.log(this, 'loaded'); }