Twitter Bootstrap tabs not working: when I click on them nothing happens

前端 未结 13 1115
温柔的废话
温柔的废话 2020-12-04 10:49

I am trying to implement Twitter Bootstrap tabs in the following code, but it does not seem to work. The tabs get displayed, but when I click on them nothing happens. Below

13条回答
  •  盖世英雄少女心
    2020-12-04 11:38

    This solved it when none of the other examples did:

    $('#myTab a').click(function (e) {
      e.preventDefault();
      $(this).tab('show');
    });
    

提交回复
热议问题