Tooltip for a div

Hi!
I am trying to use webix tooltips not for a webix component but for a div. Could you suggest me a common technique of using tooltips with a random div container? I have tried different ways but still can’t figure out how to do this
Thanks

Hi,

it is possible to create tooltip view and show it in a certain position:

// create tooltip view
var tooltip = new webix.ui.tooltip({
    template: "<b>#name1# #name2#</b>"
});

// show tooltip with a certain data and position

var data = { name1: "Sherlock",  name2: "Holmes"};
var position = {x:100,y:100}; 
tooltip.show(data, position);