I want to know when an image has finished loading. Is there a way to do it with a callback?
If not, is there a way to do it at all?
|
I want to know when an image has finished loading. Is there a way to do it with a callback? If not, is there a way to do it at all? |
||||
|
|
|
Image.onload() will often work. To use it, you'll need to be sure to bind the event handler before you set the src attribute. Related Links: Example Usage:
|
|||||||
|
|
You can use the .complete property of the Javascript image class. I have an application where I store a number of Image objects in an array, that will be dynamically added to the screen, and as they're loading I write updates to another div on the page. Here's a code snippet:
|
|||||||
|
|
You could use the load()-event in jQuery but it won't always fire if the image is loaded from the browser cache. This plugin https://github.com/peol/jquery.imgloaded/raw/master/ahpi.imgload.js can be used to remedy that problem. |
|||
|
|
|
these functions will solve the problem, you need to implement the called as in
|
|||||
|