1

I am writing a web application that deals with a large image. To make loading of the page a bit responsive, I used the Lazy Load Jquery Plugin. (http://www.appelsiini.net/projects/lazyload).

But It seems what I need is to display the progress of loading of image because the image took more than 20 secs to load.

How I am going to add an event listener for the progress for the img tag? I want display a progress in terms of percentage.

BBaysinger
  • 6,614
  • 13
  • 63
  • 132

1 Answers1

0

Other options are to show a low-quality fast-loading image in it's place until Lazy Loading replaces it. If you really want to monitor progress, you'd probably have to do it through AJAX, like this - http://blogs.adobe.com/webplatform/2012/07/10/image-progress-event-progress/

Dan Goodspeed
  • 3,484
  • 4
  • 26
  • 35