auto scroll to bottom of page with jquery

前端 未结 8 1366
自闭症患者
自闭症患者 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 06:03

    function scroll(){
      $('html, body').animate({
        scrollTop: $("#footerOfPage").offset().top
      }, 0);
    }
    

提交回复
热议问题