Search code examples
jqueryjquery-pluginsqtip

qTip that stays open


Is it possible to create a tooltip that would stay open, even when mouse isn't hovering underlying element anymore?

I'm trying to change fixed to true and in beforeHide return false. That's not helping.


Solution

  • Documentation for qTip somehow obscure. So basically it has to be called like that:

    $(".mydiv").qtip(
                     api: {
                            beforeHide: function () {
                                    return false;
                             }
                          },
                     hide: { fixed: true }
     );