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 want to delay an animation that slides an image in a li a-element. I had the idea, that I could go through every li element with a counter (i) and set a timeout with the animation to do: 1000 + i * 50

Unfortunately only the last li-element will be animated. Why is that?

li = $('nav ul li').get();
lic = li.length;

$('nav ul li a .icon').hide();

t = [];
for (i = 0; i < li.length; i++) {
    var obj = $('nav ul li')[i];

    t[i] = setTimeout(function() {
        $(obj).children('a').children('.icon').slideDown();
    }, 1000 + i * 50);

    delete obj;
}
share|improve this question
Why are you wrapping an already jQuery object in another jQuery constructor? – Michael Dibbets Jun 27 '12 at 21:23
To clarify things, delete obj will not do anything because delete will only remove properties, not variables. – Derek 朕會功夫 Jun 27 '12 at 21:26
Oh thx for the info. :) – bluefirex Jun 28 '12 at 9:10

2 Answers

up vote 2 down vote accepted

This should be fine:

jsBin demo

$('nav ul li a .icon').hide();

$('nav ul li').each(function( i ){       
    $(this).find('.icon').delay(i*300).slideDown();    
});
share|improve this answer
Thanks, it works :) – bluefirex Jun 27 '12 at 21:32
@RokoC.Buljan - $(this).find(".icon") is faster. – Derek 朕會功夫 Jun 27 '12 at 21:34
1  
@Derek :) I was just about to roll back my edit. thx! – Roko C. Buljan Jun 27 '12 at 21:38

Try this, and this is no a full code, and un-tested. Please borrow the logic from this..

$('nav ul li').each(function {
    $(this).find("a>.icon").hide();
    t[i] = setTimeout(function() {
        $(this).find("a>.icon").slideDown();
    }, 1000 + i * 50);
});
share|improve this answer

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.