Tooltip - Hovering from link A -> B
Case:
two links with images in it are next to each other.
Tooltip setup:
- $(function() {
- $('a').tooltip({
- track: true,
- delay: 250,
- showURL: false,
- showBody: " - ",
- fade: 350,
- opacity: 0.8,
- top: -30,
- positionLeft: true
- });
- });
Now if you go from link 1 to link 2 then it will fade out link 1 and delay link 2 it directly shows the title of link 2 in the tooltip eventhough still fading out for link 1.
When the delay is finished then link 2 is newly presented (which is good).
So the content of the link should never change when hovering another tooltip element IMO.