<p>Add small overlays of content, like those on the iPad, to any element for housing secondary information.</p>
<h4>Plugin dependency</h4>
<p>Popovers require the <ahref="#tooltips">tooltip plugin</a> to be included in your version of Bootstrap.</p>
</div>
<divclass="bs-callout bs-callout-danger">
<h4>Opt-in functionality</h4>
<p>For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning <strong>you must initialize them yourself</strong>.</p>
</div>
<divclass="bs-callout bs-callout-warning">
<h4>Popovers in button groups and input groups require special setting</h4>
<p>When using popovers on elements within a <code>.btn-group</code> or an <code>.input-group</code>, you'll have to specify the option <code>container: 'body'</code> (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the popover is triggered).</p>
</div>
<divclass="bs-callout bs-callout-warning">
<h4>Don't try to show popovers on hidden elements</h4>
<p>Invoking <code>$(...).popover('show')</code> when the target element is <code>display: none;</code> will cause the popover to be incorrectly positioned.</p>
</div>
<divclass="bs-callout bs-callout-info">
<h4>Popovers on disabled elements require wrapper elements</h4>
<p>To add a popover to a <code>disabled</code> or <code>.disabled</code> element, put the element inside of a <code><div></code> and apply the popover to that <code><div></code> instead.</p>
</div>
<divclass="bs-callout bs-callout-danger">
### Static popover
<h4>Plugin dependency</h4>
<p>Popovers require the <ahref="#tooltips">tooltip plugin</a> to be included in your version of Bootstrap.</p>
</div>
<divclass="bs-callout bs-callout-danger">
<h4>Opt-in functionality</h4>
<p>For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning <strong>you must initialize them yourself</strong>.</p>
</div>
<divclass="bs-callout bs-callout-warning">
<h4>Popovers in button groups and input groups require special setting</h4>
<p>When using popovers on elements within a <code>.btn-group</code> or an <code>.input-group</code>, you'll have to specify the option <code>container: 'body'</code> (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the popover is triggered).</p>
</div>
<divclass="bs-callout bs-callout-warning">
<h4>Don't try to show popovers on hidden elements</h4>
<p>Invoking <code>$(...).popover('show')</code> when the target element is <code>display: none;</code> will cause the popover to be incorrectly positioned.</p>
</div>
<divclass="bs-callout bs-callout-info">
<h4>Popovers on disabled elements require wrapper elements</h4>
<p>To add a popover to a <code>disabled</code> or <code>.disabled</code> element, put the element inside of a <code><div></code> and apply the popover to that <code><div></code> instead.</p>
</div>
<h3>Static popover</h3>
Four options are available: top, right, bottom, and left aligned.
<p>Four options are available: top, right, bottom, and left aligned.</p>
<divclass="bs-example bs-example-popover">
<divclass="bs-example bs-example-popover">
<divclass="popover top">
<divclass="popover top">
<divclass="arrow"></div>
<divclass="arrow"></div>
<h3class="popover-title">Popover top</h3>
<h3class="popover-title">Popover top</h3>
<divclass="popover-content">
<divclass="popover-content">
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
</div>
</div>
</div>
</div>
<div class="popover right">
<divclass="popover right">
<div class="arrow"></div>
<divclass="arrow"></div>
<h3 class="popover-title">Popover right</h3>
<h3class="popover-title">Popover right</h3>
<div class="popover-content">
<divclass="popover-content">
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
</div>
</div>
</div>
</div>
<div class="popover bottom">
<divclass="popover bottom">
<div class="arrow"></div>
<divclass="arrow"></div>
<h3 class="popover-title">Popover bottom</h3>
<h3class="popover-title">Popover bottom</h3>
<div class="popover-content">
<div class="popover-content">
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
</div>
</div>
</div>
</div>
<div class="popover left">
<divclass="popover left">
<div class="arrow"></div>
<divclass="arrow"></div>
<h3 class="popover-title">Popover left</h3>
<h3class="popover-title">Popover left</h3>
<div class="popover-content">
<divclass="popover-content">
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
<p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
<buttontype="button"class="btn btn-lg btn-danger bs-docs-popover"data-toggle="popover"title="Popover title"data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
### Live demo
{% example html %}
<buttontype="button"class="btn btn-lg btn-danger bs-docs-popover"data-toggle="popover"title="Popover title"data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
{% endexample %}
#### Four directions
<divclass="bs-example popover-demo">
<divclass="bs-example-popovers">
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="left"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on left
</button>
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="top"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on top
</button>
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="bottom"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on bottom
</button>
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="right"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on right
</button>
</div>
</div>
{% highlight html %}
</div>
<buttontype="button"class="btn btn-lg btn-danger"data-toggle="popover"title="Popover title"data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
{% endhighlight %}
<h4>Four directions</h4>
<divclass="bs-example popover-demo">
<divclass="bs-example-popovers">
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="left"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on left
</button>
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="top"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on top
</button>
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="bottom"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on bottom
</button>
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="right"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on right
</button>
</div>
</div><!-- /example -->
{% highlight html %}
{% highlight html %}
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="left"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
<buttontype="button"class="btn btn-secondary"data-container="body"data-toggle="popover"data-placement="left"data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
Popover on left
Popover on left
...
@@ -113,185 +111,202 @@ sagittis lacus vel augue laoreet rutrum faucibus.">
...
@@ -113,185 +111,202 @@ sagittis lacus vel augue laoreet rutrum faucibus.">
</button>
</button>
{% endhighlight %}
{% endhighlight %}
<h4>Dismiss on next click</h4>
#### Dismiss on next click
<p>Use the <code>focus</code> trigger to dismiss popovers on the next click that the user makes.</p>
Use the `focus` trigger to dismiss popovers on the next click that the user makes.
<buttontype="button"class="btn btn-lg btn-danger bs-docs-popover-dismiss"data-toggle="popover"title="Dismissible popover"data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</button>
</div>
{% example html %}
{% highlight html %}
<buttontype="button"class="btn btn-lg btn-danger popover-dismiss"data-toggle="popover"title="Dismissible popover"data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</button>
<buttontype="button"class="btn btn-lg btn-danger popover-dismiss"data-toggle="popover"title="Dismissible popover"data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</button>
{% endhighlight %}
{% endexample %}
{% highlight js %}
{% highlight js %}
$('.popover-dismiss').popover({
$('.popover-dismiss').popover({
trigger: 'focus'
trigger: 'focus'
})
})
{% endhighlight %}
{% endhighlight %}
<divclass="bs-callout bs-callout-warning">
<divclass="bs-callout bs-callout-warning">
<h4>Multiple-line links</h4>
<h4>Multiple-line links</h4>
<p>Sometimes you want to add a popover to a hyperlink that wraps multiple lines. The default behavior of the popover plugin is to center it horizontally and vertically. Add <code>white-space: nowrap;</code> to your anchors to avoid this.</p>
<p>Sometimes you want to add a popover to a hyperlink that wraps multiple lines. The default behavior of the popover plugin is to center it horizontally and vertically. Add <code>white-space: nowrap;</code> to your anchors to avoid this.</p>
<p>Options can be passed via data attributes or JavaScript. For data attributes, append the option name to <code>data-</code>, as in <code>data-animation=""</code>.</p>
<divclass="table-responsive">
### Options
<tableclass="table table-bordered table-striped">
<thead>
Options can be passed via data attributes or JavaScript. For data attributes, append the option name to `data-`, as in `data-animation=""`.
<tr>
<thstyle="width: 100px;">Name</th>
<divclass="table-responsive">
<thstyle="width: 100px;">Type</th>
<tableclass="table table-bordered table-striped">
<thstyle="width: 50px;">Default</th>
<thead>
<th>Description</th>
<tr>
</tr>
<thstyle="width: 100px;">Name</th>
</thead>
<thstyle="width: 100px;">Type</th>
<tbody>
<thstyle="width: 50px;">Default</th>
<tr>
<th>Description</th>
<td>animation</td>
</tr>
<td>boolean</td>
</thead>
<td>true</td>
<tbody>
<td>Apply a CSS fade transition to the popover</td>
<tr>
</tr>
<td>animation</td>
<tr>
<td>boolean</td>
<td>container</td>
<td>true</td>
<td>string | false</td>
<td>Apply a CSS fade transition to the popover</td>
<td>false</td>
</tr>
<td>
<tr>
<p>Appends the popover to a specific element. Example: <code>container: 'body'</code>. This option is particularly useful in that it allows you to position the popover in the flow of the document near the triggering element - which will prevent the popover from floating away from the triggering element during a window resize.</p>
<td>container</td>
</td>
<td>string | false</td>
</tr>
<td>false</td>
<tr>
<td>
<td>content</td>
<p>Appends the popover to a specific element. Example: <code>container: 'body'</code>. This option is particularly useful in that it allows you to position the popover in the flow of the document near the triggering element - which will prevent the popover from floating away from the triggering element during a window resize.</p>
<td>string | function</td>
</td>
<td>''</td>
</tr>
<td>
<tr>
<p>Default content value if <code>data-content</code> attribute isn't present.</p>
<td>content</td>
<p>If a function is given, it will be called with 1 argument, which is the element that the popover is attached to.</p>
<td>string | function</td>
</td>
<td>''</td>
</tr>
<td>
<tr>
<p>Default content value if <code>data-content</code> attribute isn't present.</p>
<td>delay</td>
<p>If a function is given, it will be called with 1 argument, which is the element that the popover is attached to.</p>
<td>number | object</td>
</td>
<td>0</td>
</tr>
<td>
<tr>
<p>Delay showing and hiding the popover (ms) - does not apply to manual trigger type</p>
<td>delay</td>
<p>If a number is supplied, delay is applied to both hide/show</p>
<td>number | object</td>
<p>Object structure is: <code>delay: { "show": 500, "hide": 100 }</code></p>
<td>0</td>
</td>
<td>
</tr>
<p>Delay showing and hiding the popover (ms) - does not apply to manual trigger type</p>
<tr>
<p>If a number is supplied, delay is applied to both hide/show</p>
<td>html</td>
<p>Object structure is: <code>delay: { "show": 500, "hide": 100 }</code></p>
<td>boolean</td>
</td>
<td>false</td>
</tr>
<td>Insert HTML into the popover. If false, jQuery's <code>text</code> method will be used to insert content into the DOM. Use text if you're worried about XSS attacks.</td>
<tr>
</tr>
<td>html</td>
<tr>
<td>boolean</td>
<td>placement</td>
<td>false</td>
<td>string | function</td>
<td>Insert HTML into the popover. If false, jQuery's <code>text</code> method will be used to insert content into the DOM. Use text if you're worried about XSS attacks.</td>
<td>'right'</td>
</tr>
<td>How to position the popover - top | bottom | left | right | auto.<br> When "auto" is specified, it will dynamically reorient the popover. For example, if placement is "auto left", the popover will display to the left when possible, otherwise it will display right.</td>
<tr>
</tr>
<td>placement</td>
<tr>
<td>string | function</td>
<td>selector</td>
<td>'right'</td>
<td>string</td>
<td>How to position the popover - top | bottom | left | right | auto.<br> When "auto" is specified, it will dynamically reorient the popover. For example, if placement is "auto left", the popover will display to the left when possible, otherwise it will display right.</td>
<td>false</td>
</tr>
<td>If a selector is provided, popover objects will be delegated to the specified targets. In practice, this is used to enable dynamic HTML content to have popovers added. See <ahref="https://github.com/twbs/bootstrap/issues/4215">this</a> and <ahref="http://jsfiddle.net/fScua/">an informative example</a>.</td>
<tr>
</tr>
<td>selector</td>
<tr>
<td>string</td>
<td>template</td>
<td>false</td>
<td>string</td>
<td>If a selector is provided, popover objects will be delegated to the specified targets. In practice, this is used to enable dynamic HTML content to have popovers added. See <ahref="https://github.com/twbs/bootstrap/issues/4215">this</a> and <ahref="http://jsfiddle.net/fScua/">an informative example</a>.</td>
<p><code>.arrow</code> will become the popover's arrow.</p>
<td>
<p>The outermost wrapper element should have the <code>.popover</code> class.</p>
<p>Base HTML to use when creating the popover.</p>
</td>
<p>The popover's <code>title</code> will be injected into the <code>.popover-title</code>.</p>
</tr>
<p>The popover's <code>content</code> will be injected into the <code>.popover-content</code>.</p>
<tr>
<p><code>.arrow</code> will become the popover's arrow.</p>
<td>title</td>
<p>The outermost wrapper element should have the <code>.popover</code> class.</p>
<td>string | function</td>
</td>
<td>''</td>
</tr>
<td>Default title value if <code>title</code> attribute isn't present</td>
<tr>
</tr>
<td>title</td>
<tr>
<td>string | function</td>
<td>trigger</td>
<td>''</td>
<td>string</td>
<td>Default title value if <code>title</code> attribute isn't present</td>
<td>'click'</td>
</tr>
<td>How popover is triggered - click | hover | focus | manual. You may pass multiple triggers; separate them with a space.</td>
<tr>
</tr>
<td>trigger</td>
<tr>
<td>string</td>
<td>viewport</td>
<td>'click'</td>
<td>string | object</td>
<td>How popover is triggered - click | hover | focus | manual. You may pass multiple triggers; separate them with a space.</td>
<td>{ selector: 'body', padding: 0 }</td>
</tr>
<td>
<tr>
<p>Keeps the popover within the bounds of this element. Example: <code>viewport: '#viewport'</code> or <code>{ "selector": "#viewport", "padding": 0 }</code></p>
<td>viewport</td>
</td>
<td>string | object</td>
</tr>
<td>{ selector: 'body', padding: 0 }</td>
</tbody>
<td>
</table>
<p>Keeps the popover within the bounds of this element. Example: <code>viewport: '#viewport'</code> or <code>{ "selector": "#viewport", "padding": 0 }</code></p>
</div><!-- /.table-responsive -->
</td>
<divclass="bs-callout bs-callout-info">
</tr>
<h4>Data attributes for individual popovers</h4>
</tbody>
<p>Options for individual popovers can alternatively be specified through the use of data attributes, as explained above.</p>
</table>
</div>
</div>
<divclass="bs-callout bs-callout-info">
<h4>Data attributes for individual popovers</h4>
<p>Options for individual popovers can alternatively be specified through the use of data attributes, as explained above.</p>