$.each and animation confusion

Posted by XGreen on Stack Overflow See other posts from Stack Overflow or by XGreen
Published on 2010-04-11T02:15:29Z Indexed on 2010/04/11 2:23 UTC
Read the original article Hit count: 313

Filed under:

I am expecting when I go

$.each($(something).find(something), function(){
   $(this).delay(1000).fadeOut();
});

then for each matching element I get a second of delay before it is gone. but what I get is a second of delay and then it all fades out. its 3am and I can't think. please help

© Stack Overflow or respective owner

Related posts about jQuery