Bootstrap Tooltip
component with a variety of options to provide uniquely looking Tooltip component that matches the Keen's design standards.
data-toggle="tooltip"
attribute to the element.
data-html="true"
to allow HTML tags in the tooltip's title to be rendered in 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.
dark
and brand
skins for tooltips via data-toggle="kt-tooltip"
and data-skin="dark"
as shown below:
disabled
attribute aren’t interactive, meaning users cannot focus, hover, or click them to trigger a tooltip (or popover). As a workaround, you’ll want to trigger the tooltip from a wrapper <div>
or <span>
, ideally made keyboard-focusable using tabindex="0"
, and override the pointer-events
on the disabled element.