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.

I have a small preload script

var speed = 55; //speed in ms
$(function(){

    $("#projects img").hide();

    timer = setInterval(function () {

        $notLoaded = $("#projects img").not(".loaded");
        $notLoaded.eq(Math.floor(Math.random() * $notLoaded.length)).fadeIn().addClass("loaded");

        if ($notLoaded.length == 0) {
            clearInterval(timer);
        }
    }, speed);

});

My problem is, the script keeps firing every time that particular page is requested. Is there some way that, once the images are cached, the script does not run and just shows the images? The images are hidden with CSS display:none then faded in at random. I'm getting in over my head with jQuery, I am only beginning to learn it. I read something about complete but have no idea how to implement that, or even if it's correct. Any suggestions?

share|improve this question
You should check this out. stackoverflow.com/questions/9438786/… – Adam Merrifield Sep 27 '12 at 1:32

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.