I want to transform an already existing div
element in a tooltip that stays open until dismissed. I tried to use JQuery official tooltip plugin. I found a way to not close it on mouseleave, but it requires a content string, I can't pass a DOM element.
Even if there's a trick to pass HTML content, I need the original DOM element, since events are binded to it.
qTip2 seems to be able to do it, but elements must be adjacent and they can't.
For now I've done it by hand, but I'm not sure I'm covering all the subtle possibilities of a bad positioning. And furthermore it looks ugly.