Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在のページにいる間ずっとページにアクセスした後、組み込みのjqueryツールチップを開いたままにすることは可能ですか?
外部ライブラリを使用したくありません。
編集:追加情報のためにボタンの上に開いたままになるインフォバブルのようなものを実現したいと思います。
mouseleaveツールチップが閉じないようにするために、イベントのバブリングを停止できます(ツールチップが閉じます)。
mouseleave
$("a").on('mouseleave', function (event) { event.stopImmediatePropagation(); }).tooltip();
JSFiddle。