Is there a way to know how much percentage of one image is already loaded? Kind of a onProgress event for the load? So if I would do something like this
$('<img/>').load(function(){
$(this).appendTo(some div);
})
.error()
.attr('src',some source);
I could have some progress bar indicating how much of the previous load is complete.
Thanks