I've got my tooltip defined as follows:
Basically, I want the tooltip to appear when someone clicks, and not to disappear till someone clicks again.
Unfortunately, this doesn't work as the one click seems to show the tooltip and trigger the exit event as well.
Do you know if I can achieve click on, click off?
Thanks,
Nick
$(".toolTip").tooltip({
effect: 'slide',
relative: true,
position: 'bottom center',
offset: [10,0],
events: {
def: 'click, click'
}
});
Basically, I want the tooltip to appear when someone clicks, and not to disappear till someone clicks again.
Unfortunately, this doesn't work as the one click seems to show the tooltip and trigger the exit event as well.
Do you know if I can achieve click on, click off?
Thanks,
Nick