Tooltip less than 1 minute read References Bootstrap Documentation Code Documentation Properties TypeScript import { Components } from "gd-sprest-bs"; // Create the tooltip let el = document.querySelector("#tooltip"); let tooltip = Components.Tooltip({ el: el, text: "Tooltip Demo" options: { html: true, title: "My Tooltip", } }); Code Playground Twitter Facebook LinkedIn