複数の入力があるフォームがあり、各フィールドをクリックすると、jQueryとリンクしたフォーカスメソッドが正しく起動します(コンソールロギングで確認しました)が、実際にフィールドをクリックしたときにのみポップオーバーが起動し、次の場合は機能しません。それらの間をタブで移動します(それでも関数を呼び出しますが、ポップオーバーは表示されません)。
次にいくつかのサンプルコードを示します。
// create the popover on focus but does not work when tabbing
$(".tblData").focus(function(){
$(this).popover({content: "Info!", position: "right"});
}
});
// destroy the popover on blur to be efficient
$(".tblData").blur(function(){
$(this).popover('destroy');
});