1
I don’t know much about it, but I’ll try to explain.
Currently when I pass the mouse over a div
with class tooltips
, the script below is executed:
$('.tooltips').tooltip();
However, I would like this to happen as soon as I load the page, there is no need to pass the mouse on the div
or click on it.
How can I do that?
It may be quite likely that this function shows the tooltip after a Hover event in the element. In this case an alternative would be to fire a Trigger with the event in the element to activate the tooltip.
– Lucas Fontes Gaspareto
Era this what did you want to do @Rodrigosegatto ? If not, you could edit your question, enhance it and add more information?
– Chun