Bootstrap - Tooltips

bootstrap

How can we create tooltips using the data attributes?

<button type="button" class="btn btn-default" 
    data-toggle="tooltip" data-placement="left" 
    title="Tooltip on left">Tooltip on left</button>

Why do we have to specify container: 'body' when using tooltips or popovers on elements within an .input-group?

When using tooltips or popovers on elements within an .input-group, you'll have to specify the option container: 'body' to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip or popover is triggered).

Why do we have to explicitly initialize the Tooltips and Popover plugins?

For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning you must initialize them yourself. One way to initialize all tooltips on a page would be to select them by their data-toggle attribute:

$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})

The required markup for a tooltip is only a data attribute and title on the HTML element you wish to have a tooltip. The generated markup of a tooltip is rather simple, though it does require a position (by default, set to top by the plugin).

<!-- HTML to write -->
<a href="#" data-toggle="tooltip" title="Some tooltip text!">Hover over me</a>

<!-- Generated markup by the plugin -->
<div class="tooltip top" role="tooltip">
  <div class="tooltip-arrow"></div>
  <div class="tooltip-inner">
    Some tooltip text!
  </div>
</div>

What does the Tooltips plugin do to your DOM?

The tooltip plugin generates content and markup on demand, and by default places tooltips after their trigger element.

How can we trigger a tooltip using JavaScript?

$('#example').tooltip(options)

What is the default behavior for tooltip on multiple-line links?

Sometimes you want to add a tooltip to a hyperlink that wraps multiple lines. The default behavior of the tooltip plugin is to center it horizontally and vertically. Add white-space: nowrap; to your anchors to avoid this.

Why do we have to add container: body when using tooltips in button groups and input groups?

When using tooltips on elements within a .btn-group or an .input-group, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip is triggered).

What happens when we try to show tooltips on hidden elements?

Invoking $(…).tooltip('show') when the target element is display: none; will cause the tooltip to be incorrectly positioned.

How can we make tooltips accessibl?

For users navigating with a keyboard, and in particular users of assistive technologies, you should only add tooltips to keyboard-focusable elements such as links, form controls, or any arbitrary element with a tabindex="0" attribute.

How can we create tooltips on disabled elements?

To add a tooltip to a disabled or .disabled element, put the element inside of a <div> and apply the tooltip to that <div> instead.

How can we pass options to the tooltips plugin?

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-animation="".

  1. animation: boolean, true. Apply a CSS fade transition to the tooltip
  2. container: string (or false), false. Appends the tooltip to a specific element. Example: container: 'body'. This option is particularly useful in that it allows you to position the tooltip in the flow of the document near the triggering element - which will prevent the tooltip from floating away from the triggering element during a window resize.
  3. delay: number or 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 }
  4. 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.
  5. placement: string or 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. When a function is used to determine the placement, it is called with the tooltip DOM node as its first argument and the triggering element DOM node as its second. The this context is set to the tooltip instance.
  6. selector: string, false. If a selector is provided, tooltip objects will be delegated to the specified targets. In practice, this is used to enable dynamic HTML content to have tooltips added. See this and an informative example.
  7. template: string. Base HTML to use when creating the tooltip. The tooltip's title will be injected into the .tooltip-inner. .tooltip-arrow will become the tooltip's arrow. The outermost wrapper element should have the .tooltip class.
  8. title: string or function, ''. Default title value if title attribute isn't present. If a function is given, it will be called with its this reference set to the element that the tooltip is attached to.
  9. trigger: string, 'hover focus'. How tooltip is triggered - click | hover | focus | manual. You may pass multiple triggers; separate them with a space. manual cannot be combined with any other trigger.
  10. viewport: string, object, or function. Default: { selector: 'body', padding: 0 }. Keeps the tooltip within the bounds of this element. Example: viewport: '#viewport' or { "selector": "#viewport", "padding": 0 }. If a function is given, it is called with the triggering element DOM node as its only argument. The this context is set to the tooltip instance.

Options for individual tooltips can alternatively be specified through the use of data attributes, as explained above.

How can we show a tooltip?

$('#element').tooltip('show')

Reveals an element's tooltip. Returns to the caller before the tooltip has actually been shown (i.e. before the shown.bs.tooltip event occurs). This is considered a "manual" triggering of the tooltip. Tooltips with zero-length titles are never displayed.

How can we hide a tooltip?

$('#element').tooltip('hide')

How can we toogle a tooltip?

$('#element').tooltip('toggle')

How can we destroy a tooltip?

$('#element').tooltip('destroy')

Tooltips that use delegation (which are created using the selector option) cannot be individually destroyed on descendant trigger elements.

What are the event types used by the tooltips plugin?

  1. show.bs.tooltip: This event fires immediately when the show instance method is called.
  2. shown.bs.tooltip: This event is fired when the tooltip has been made visible to the user (will wait for CSS transitions to complete).
  3. hide.bs.tooltip: This event is fired immediately when the hide instance method has been called.
  4. hidden.bs.tooltip: This event is fired when the tooltip has finished being hidden from the user (will wait for CSS transitions to complete).
  5. inserted.bs.tooltip: This event is fired after the show.bs.tooltip event when the tooltip template has been added to the DOM.
$('#myTooltip').on('hidden.bs.tooltip', function () {
  // do something…
})
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License