@financial-times/o-tooltip
Version:
Provides a viewport-aware tooltip for annotating or or highlighting other aspects of a product's UI
13 lines (11 loc) • 373 B
JavaScript
import Tooltip from '../../main.js';
document.addEventListener('DOMContentLoaded', function () {
const tooltipElement = document.querySelector('.imperative-tooltip-target');
new Tooltip(tooltipElement, {
target: 'tooltip-target-imperative',
content: '<p>Click to save to somewhere</p>',
showOnConstruction: true,
position: 'above',
appendToBody: true
});
});