jqueryqtip

disable jQuery qTip mouse events


How can I keep qTip from automatically showing and hiding the tooltips on mouseenter mouseleave events?


Solution

  • As per the docs, you can register for the "beforeShow" event and returning false will stop the tooltip from showing.

    So something along the lines of this

    $("your jquery selector").qtip({ api: { beforeShow: function(event) { return false; } } });