Tooltips
Usage
<a href="#" class="tooltips" data-toggle="tooltip" title="first tooltip">Hover over me</a>
Options
Name |
type |
default |
description |
animation |
boolean |
true |
apply a CSS fade transition to the tooltip |
html |
boolean |
false |
Insert HTML into the tooltip. If false, jQuery's text method will be used to insert content into the DOM. Use text if you're worried about XSS attacks. |
placement |
string | function |
'top' |
how to position the tooltip - top | bottom | left | right | auto.
When "auto" is specified, it will dynamically reorient the tooltip. For example, if placement is "auto left", the tooltip will display to the left when possible, otherwise it will display right. |
selector |
string |
false |
If a selector is provided, tooltip objects will be delegated to the specified targets. |
title |
string | function |
'' |
default title value if title attribute isn't present |
trigger |
string |
'hover focus' |
how tooltip is triggered - click | hover | focus | manual. You may pass multiple triggers; separate them with a space. |
delay |
number | object |
0 |
delay showing and hiding the tooltip (ms) - does not apply to manual trigger type
If a number is supplied, delay is applied to both hide/show
Object structure is: delay: { show: 500, hide: 100 }
|
container |
string | false |
false |
Appends the tooltip to a specific element. Example: container: 'body'
|