10
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Bootstrap3 のTooltipが動かない時

Last updated at Posted at 2014-04-18

tooltip()を最初に呼び出す必要がある。

<a rel="tooltip" data-toggle="tooltip" data-placement="left"  data-container="body" title="ツールチップに表示するコメント">表示のコメント</a>


<script type="text/javascript">

    $(function(){
        $("[rel=tooltip]").tooltip();
    });

 </script>

popover も同様のようです。


……

<script type="text/javascript">

    $(function(){
        $("[rel=popover]").popover();
    });

 </script>
10
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?