DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2004
    Posts
    13

    Exclamation 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

  2. #2
    Join Date
    Feb 2006
    Location
    Minnesota
    Posts
    33
    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

  1. wait for java applet finished loading
    By dmb-job in forum VB Classic
    Replies: 0
    Last Post: 03-08-2006, 05:19 PM
  2. WAR Deployment - Images not loading
    By gokulram in forum Java
    Replies: 0
    Last Post: 03-18-2005, 11:58 AM
  3. Loading Images into JavaScript.
    By Scott in forum Web
    Replies: 1
    Last Post: 10-31-2002, 07:44 PM
  4. loading images dynamically is slow
    By Michael Shutt in forum Web
    Replies: 0
    Last Post: 06-26-2001, 02:25 PM
  5. Replies: 3
    Last Post: 04-06-2001, 07:42 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


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


Sponsored Links