auto scroll to bottom of page with jquery

前端 未结 8 1495
自闭症患者
自闭症患者 2020-12-29 05:30

How can i auto scroll to bottom of page with jquery becuase i am requesting xmlhttp to update content of page

8条回答
  •  一向
    一向 (楼主)
    2020-12-29 05:47

    This Code work for me:-

    jQuery("html, body").animate({ scrollTop: jQuery(window).height()}, 1500);
    

提交回复
热议问题