Enhanced functions for creating and managing tooltips. Tooltip can be positioned at an element, mouse or window.
The functions in this module can be accessed using the syntax ix.api.tooltip.functionName();
ix.api.tooltip.functionName();
// show a basic tooltipix.api.tooltip.show({ title: "Lorem ipsum", content: "Dolor sit amet", key: "my-basic-tooltip"});// close a tooltip by its keyix.api.tooltip.close("my-basic-tooltip"); Copy
// show a basic tooltipix.api.tooltip.show({ title: "Lorem ipsum", content: "Dolor sit amet", key: "my-basic-tooltip"});// close a tooltip by its keyix.api.tooltip.close("my-basic-tooltip");
Enhanced functions for creating and managing tooltips. Tooltip can be positioned at an element, mouse or window.
Usage
The functions in this module can be accessed using the syntax
ix.api.tooltip.functionName();
Example