// element (`htmlTarget`)
ix.tooltip.show({
htmlTarget: ix.util.getHtml("<GUID>"),
height: 200,
width: 200,
title: "Lorem ipsum",
key: "tt-key-element"
});
// mouse
ix.tooltip.show({
position: "mouse",
height: 200,
width: 200,
title: "Lorem ipsum",
key: "tt-key-mouse"
});
// window (centered, if not specified)
ix.tooltip.show({
position: "window",
height: 200,
width: 200,
title: "Lorem ipsum",
key: "tt-key-window"
});
Opens a tooltip which is positioned at
element
,mouse
orwindow
.