Search code examples
javascriptjqueryqtip2

Find if any QTips are visible?


I have a window interval that runs code every 5 seconds. However,this code can potentially remove and recreate certain elements that might be showing the user a QTip.

Is there a way to find if there is a QTip that is visible using JQuery?

Thanks


Solution

  • you can test it by using:

    if($('.qtip:visible').length > 0)