Reputation: 302
I'm using qTip and i noticed that when the tip is visible and a javascript alert is triggered the qtip does not disappear after the alert has been dismissed.
Is there any fix?
Thanks in advance
Upvotes: 0
Views: 122
Reputation: 490153
When you do an alert()
(or prompt()
) the browser's state is essentially frozen, waiting for the dialogue to be dismissed.
If you want to stop this, use a custom modal.
Upvotes: 1