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.
ページ上のすべてのポップオーバーを同時に表示するにはどうすればよいですか?
HTML が次のようになっているとします。
<a href="#" rel="popover" title="My nicer popover text">hover over me</a>
triggerオプションを設定して、manual無条件にポップオーバーを表示する必要があります。
trigger
manual
$('[rel=popover]').popover({'trigger': 'manual'}); $('[rel=popover]').popover('show');