Tooltip Plugin. Allmost there ...
Hello,
I have a problem on my tooltip plugin: http://jsfiddle.net/mdmoura/RPUX6/
When I move the mouse faster between elements (1 and 2) the tooltip does not show.
I think this happens because I have a delay on element mouse leave:
- $this.mouseleave(function (e) {
- tooltip.timer = setTimeout(function () {
- $("." + options.class).detach();
- }, !options.mouse || options.static ? options.delay || 0 : 0);
- }), // Mouse leave
I have it to allow the mouse to move over the tooltip for when there is a link in it.
The idea would be to cancel the hide delay when the mouse goes over another element.
Thank You,
Miguel