-
How to know when images are finished loading
Hi,
I would like to know exactly when an image is totally loaded. I need this because I have to test the image width with javascript. I tried image.onLoad but it's fired when the tag is loaded, not the entire image.
So for result, if the image is, let's say, 5 of width, it returns 28 with IE and 23 with FF. But if I put a delay, the image width is correct. So, I understand that the onload event is not working as I'd expect.
So, for now, what I do is that I set a timeout of 500 milliseconds and then call my function. It's working, but not very good I think...
Here's my code:
var ctrlImg = document.getElementById('ctrlImg');
ctrlImg.src = "/getNb.aspx";
setTimeout("setValue()",500);
Is there a way to know for sure when an image is loaded?
Thanks,
Stephane
-
Yes -- code an event handler for the "onreadystatechange" event. No need for timeouts.
For details, check this search result:
http://groups.google.com/groups?q=on...techange&hl=en
Similar Threads
-
By dmb-job in forum VB Classic
Replies: 0
Last Post: 03-08-2006, 05:19 PM
-
By gokulram in forum Java
Replies: 0
Last Post: 03-18-2005, 11:58 AM
-
Replies: 1
Last Post: 10-31-2002, 07:44 PM
-
By Michael Shutt in forum Web
Replies: 0
Last Post: 06-26-2001, 02:25 PM
-
Replies: 3
Last Post: 04-06-2001, 07:42 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks