Hi There,
I would like to add a link inside the tooltip of my image hotspots. At the moment it shows on mouseover and leaves straight away on mouseout. I would like to have a delay on the mouseout so the user has time to get to the link in order to click it. I can’t seem to find another post relating to this so I decided to start another for help.
After doing quite a bit of searching the closest coding I found to what I might be after is a function in the /js/avia.js file on line 1353 (delayHide:0,).
This unfortunately does nothing! well for what I’m after that is.
Would you be able to assist in how I could make the tooltip delay its hideaway?
thanks,
Jay
P.S. sorry I can’t give you any credentials or link to site as it is local.
ok! so I spent a little more time looking into my query above and within the same file (avia.js) on line 1551 it has this:
newTip.animate(animate, 200, function()
I have added in a delay there and seems to work the way I want for now. I don’t know what else it may effect as the function is for ‘hide_tooltip’ so I can only assume for now it will be all tooltips, but anyway, here is my new line with a 1 second delay:
newTip.delay(1000).animate(animate, 200, function()
Jay