var arrayList2 = $(".list");  // set of elements with class 'list'
$.each(arrayList2, function() {
     $(this).show();
});

Note that this will have all the elements display at once
(technically). If you want it so that one appears, then another one
appears maybe a second later, then another appears a second later,
etc. you'd have to add some kind of timeout or something.

On Mar 16, 12:27 pm, Tom  Shafer <tom.sha...@gmail.com> wrote:
> how can i loop through each div on a page and have them appear one by
> one
> i am trying
>
> var arrayList2 = $.makeArray(document.getElementsByClassName
> (".type"));
>
>                                                 $.each(arrayList2,function() {
>                                                         $(this).show();
>                                                 });
>
> thanks
>
> -tj

Reply via email to