Tooltips with Twitter Bootstrap

后端 未结 7 1872
挽巷
挽巷 2020-12-12 13:05

I am using Twitter Bootstrap--and I am not a frontend developer! However, it\'s making the process almost--dare I say--fun!

I\'m a bit confused about tooltips. The

相关标签:
7条回答
  • 2020-12-12 13:44

    Add this into your header

    <script>
        //tooltip
        $(function() {
            var tooltips = $( "[title]" ).tooltip();
            $(document)(function() {
                tooltips.tooltip( "open" );
            });
        });
    </script>
    

    Then just add the attribute title="your tooltip" to any element

    0 讨论(0)
提交回复
热议问题