Jquery: Fade In Div With Same Div Class One By One?
i am trying to find a way of fading in multiple divs with the same div class one by one using jquery, can anyone please show me how to do this? so far all my divs fade it at once b
Solution 1:
Use delay
:
$('.noti_box').each(function(i) {
// 'i' stands for index of each element
$(this).hide().delay(i * 3500).fadeIn(1500);
});
Post a Comment for "Jquery: Fade In Div With Same Div Class One By One?"