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