How to make with twitter bootstrap tabs on hover instead of clicking?

前端 未结 6 1976
盖世英雄少女心
盖世英雄少女心 2021-01-31 18:36

I finally got Bootstrap tabs to work. I was wondering if there\'s a way to change the behaviour so instead of clicking just hovering the cursor would show the hidden content?

6条回答
  •  眼角桃花
    2021-01-31 19:16

    JavaScript:

    In your $(document).ready or elsewhere ...
    put something like this:

    $('.nav-tabs[data-toggle="tab-hover"] > li > a').hover( function(){
        $(this).tab('show');
    });
    

    HTML:

    
    

提交回复
热议问题