1

I use simpletip jquery plugin and I want to make some changes in it. I want the tooltip to appear after some time (milliseconds) when hovering the link. Unfortunately I'm not familiar with jquery enough. Can anyone point out how this can be done?

http://craigsworks.com/projects/simpletip/

Thanks in advance

King Julien
  • 10,981
  • 24
  • 94
  • 132

3 Answers3

3

Simply use the hoverIntent plugin

ThiefMaster
  • 310,957
  • 84
  • 592
  • 636
1

It looks like you can define a custom effect for showing the tooltip.

In your configuration, define showEffect: 'custom', and showCustom property. It should look something like this:

showEffect: 'custom',
showCustom: function(tip, duration) {
    tip.delay(550).fadeIn(duration);
}

In this case, the fadeIn will be delayed for 550 milliseconds. duration is the showTime specified in your configuration, or, if omitted 150 milliseconds.

typeof
  • 5,812
  • 2
  • 15
  • 19
0

you could use the onBeforeShow callback event in the simpletip plugin, and just use a delay in that so it delays before it returns and continues to show the tip.

derek
  • 4,826
  • 1
  • 23
  • 26