Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to get a spinner gif to appear at the beginning of an image loading, then disappear when the image is loaded. Works almost everytime, but some times it will keep on displaying and won't go. Any help? (Relevant function showed)

$.loadImage = function(imgSrc,imageList){
    $("#loading-graphic").fadeIn('slow');
    $.clearImage();
    if(overlayActive == false){
        $.showOverlay();
        }
    var myImage = new Image();
    myImage.id = "portfolio-image";
    $.updateNavigation(imgSrc,imageList);
    myImage.onload = function(){
        $("#loading-graphic").hide('slow',function(){
                        // Center the image
            $.centerImage(myImage);
            $("#misty-portfolio-image-container").append(myImage);
            $("#misty-portfolio-image-container").fadeIn("fast");
            });
        };
    myImage.src = imgSrc; // Src goes after onload to prevent caching
    };
share|improve this question
Does the image execute everything in the myImage.onload function except the hiding of spinner? – Gutzofter May 27 '10 at 15:10
Does it have to do with (overlayActive == false) ? $.showOverlay()? I don't see anything like (overlayActive == false) ? $.hideOverlay() in the onLoad function... but you don't post what that function does so not sure. – mVChr May 27 '10 at 16:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.