user2315297
user2315297

Reputation: 3

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

Upvotes: 0

Views: 526

Answers (1)

Robin Leboeuf
Robin Leboeuf

Reputation: 2126

you can test it by using:

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

Upvotes: 2

Related Questions