Bootstrap accordion scrolling behaviour on collapse

前端 未结 3 1069
暗喜
暗喜 2021-02-14 02:18

I am using Bootstrap 3 accordion. After reading numerous posts on how to have independent behaviour on the contents, rather than keeping only one active by default, i use

3条回答
  •  礼貌的吻别
    2021-02-14 02:54

    Just add class="your-header-class" to the a header element:

    ...
    

    and then add this:

    $('.your-header-class').click(function(e) {
        e.preventDefault();
    })
    

提交回复
热议问题