Bootstrap tabs scroll effect to content when clicked

后端 未结 2 1358
温柔的废话
温柔的废话 2020-12-21 09:48

I am using Bootstrap 3 Tabs like this:

2条回答
  •  悲&欢浪女
    2020-12-21 10:11

    I'm using this:

    // scroll to top action
    $('.nav-tabs li a').on('click', function(event) {
        event.preventDefault();
        $('html, body').animate({scrollTop:0}, 'fast'); 
        $(this).tab('show');    
    });
    

提交回复
热议问题