How to scroll to the particular div using jquery or javascript

后端 未结 5 994
耶瑟儿~
耶瑟儿~ 2021-02-07 16:25

I want to scroll to the particular div using jquery

I have written the code like:

 $(\"#button\").on(\'click\',function(){
     var p = $(\"#dynamictabst         


        
5条回答
  •  情深已故
    2021-02-07 17:29

    Try this simple script. Change #targetDiv with your particular div ID or Class.

    $('html,body').animate({
        scrollTop: $('#targetDiv').offset().top
    }, 1000);
    

    The source code and live demo can be found from here - Smooth scroll to div using jQuery

提交回复
热议问题