I'm working with the following tooltip: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
This works really well, but is there any support for implementing a tooltip that stays open on hover? Or a way to implement that?
I'm working with the following tooltip: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
This works really well, but is there any support for implementing a tooltip that stays open on hover? Or a way to implement that?
In the end, I opted to create a seperate jquery plugin for a 'sticky' tooltip.
Its basically the same as the usual tooltip, except it doesn't hide itself on mouseout.
If you want to see the implementation, check the 'createHelper' method in the original jquery tooltip and modify it as follows:
The above basically does: create a div parent, and keep it open until the user leaves the open tooltip.