XF 1.5 html in tooltips?

"Sort of".

It would pretty much require a small amount of custom development.

If you consider something like the thread preview tooltip, you could actually use that framework for this. Hovering over the element has to make an AJAX request to a specified URL which will then return a template which contains the contents you want to display inside the tooltip.
 
The thing about the thread preview tooltip is that there is a slight delay. We need the popup to pop up instantly.
Is there a way to remove the delay?
 
Last edited:
Not really. Part of the delay is the loading of the Ajax request. The othe part is as designed so it doesn't get triggered automatically by accident. I don't think it's configurable.
 
Top Bottom