Add small overlays of content, like those on the iPad, to any element for housing secondary information.
<button class="am-btn am-btn-primary" data-am-popover="{content: 'I'm the click to show Popover'}">Click to show Popover</button>
Tooltip effect.
<button class="am-btn am-btn-success"
data-am-popover="{content: 'I'm the Hover/Focus to show Popover', trigger: 'hover focus'}">
Hover/Focus to show Popover
</button>
Add data-am-popover
attribute to elements and set options. All examples above use Data API.
<button data-am-popover="{content: 'What do you want to show?', trigger: 'hover'}">Popover
</button>
Use $().popover(options)
to add popover to elements.
<button class="am-btn am-btn-danger" id="my-popover">Popover via JS</button>
$(function() {
$('#my-popover').popover({
content: 'Popover via JavaScript'
})
});
Option | Type | Description |
---|---|---|
content | string | Contents in Popover |
trigger | string | Trigger type. Available options include click|hover|focus , Default to be click |
.popover(options)
- Activate the Popover on element. options
is an object..popover('toggle')
- Switch between show and hide..popover('open')
- Show Popover.popover('close')
- Hide Popover.popover('setContent', content)
- Set the popover contents. v2.4.1+Events are defined on element that trigger the popover.
Event | Description |
---|---|
open.popover.amui | Fired immediately when open is called. |
close.popover.amui | Fired immediately when |