Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have created a gallery script, which first loads images to be shown http://bit.ly/9aQdr3

There are 36 images but image.load() is firing only 27 times. here is the code

    var c = 0;
    for(var i =1; i <= 36; i++){
        var img = '<img width="500" src="images/' + i + '.jpg" />'
        $('#gallery .images').append(img);
    }

    $('#gallery .images img').css({display: 'block', position: 'absolute', left: '0px', top: '0px'});
    $('#gallery .images img').hide();
    totalImages = $('#gallery .images img').size();
    $('#gallery .images img').load(function(){          
        c++;
        var ip = parseInt((c/totalImages)*100);                     
        $('#gallery .images p').text('Loading ... ' + ip + '%');            
        if(c == totalImages){               
            $('#gallery .images p').remove();
            $('#gallery .images img').eq(0).show();
            interval = setInterval(startAnimation, 100);
            isPlaying = true;
        }
    });
share|improve this question
Have you tried applying css and doing append after you attach the load handler? Also, for readability, do var $gallery = $('#gallery images'), then you can do $gallery.find('p') etc – glebm Oct 8 '10 at 14:08
after moving append after the .load code. Its not working at all without any error. – coure2011 Oct 8 '10 at 21:01

1 Answer

up vote 0 down vote accepted

the problem seems to be here

if(c == totalImages){
    $('#movieShow .images p').remove();
    $('#movieShow .images img').eq(0).show();
    interval = setInterval('startAnimation()', 100);
    isPlaying = true;
}

try to print on the firebug console c and totalImages, maybe you have a problem with the increment of c variable or totalimages is not the expected value.

Note: instead of

interval = setInterval('startAnimation()', 100);

please use

interval = setInterval(startAnimation, 100);

so you can avoid a scope resolution with an expensive eval()

share|improve this answer
No, thats not the solution. Still the same stuck at 74% – coure2011 Oct 8 '10 at 13:48

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.