Bootstrap tabs scroll effect to content when clicked

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

I am using Bootstrap 3 Tabs like this:

2条回答
  •  无人及你
    2020-12-21 10:07

    I have updated your fiddle, Now its working fine

    Working Demo

    jQuery

    jQuery(document).ready(function ($) {
    
      $('.nav a').click(function (e) {
        e.preventDefault();
        $(this).tab('show');
      })  
    
      $('a.scroll').on('click', function (e) {
        var href = $(this).attr('href');
        $('html, body').animate({
          scrollTop: $(href).offset().top
          }, 'slow');
        e.preventDefault();
      });
    
    });
    

提交回复
热议问题