views:

18

answers:

0

I am using jQuery beauty tips (which is also using hoverIntent plugin) and I would like to display an href link inside the tooltip text and allow the user to click on the link.

However, as soon as we leave the anchor, the toottip text disappears after some timeout (that we can define)

So I would like to keep the the tooltip text opened as long as the user cursor is over the anchor OR the tooltip text.

How can I do that? Is it possible? I tried, without success, something like:

$('.bt').bt({
postShow: function(box) {
  $(".bt-content").hoverIntent({
    timeout : 500,
    over: function() {
      $(".bt-wrapper").show(); //or $(".bt-active").btOn();
    }
  });
}
})