フォーカストリガーとポップオーバー内のリンクを備えたポップオーバーがあります。
HTML:
<div class="tree">
<div class="html-popup">
Popup text <a href="http://www.google.com" target="_top">Link somewhere</a>
</div>
<a tabindex="0" role="button" data-container="body" data-toggle="popover" data-trigger="focus" data-placement="bottom">
Text that has a popover
</a>
</div>
JavaScript:
$('.tree [data-toggle="popover" ]').popover({
html: true,
content: function () {
return $(this).prev().html();
}
});
これがライブサンプルです: JSFiddle
Chrome ではポップオーバーが閉じる前にリンクが開きますが、IE と Firefox ではポップオーバーを閉じるだけです。
IE9 と、かなり新しいバージョンの Firefox をサポートする必要があります。ポップオーバーが閉じる前にリンクを開くにはどうすればよいですか?
ありがとう!