• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Fix my tooltip closing problem

kenw232

n00b
Joined
Nov 28, 2009
Messages
46
I have a pure CSS tooltip that works well. I just can't figure out how to manually close it with jQuery. I can hide it but it disappears and won't come back.

jQuery Simple Example - JSFiddle
Mouse over the tooltip and click "close".

Anyone know if this can be closed via a link? I've tried all sorts of jquery trigger("mouseout") type events but nothing works.
 
You can't have a pure CSS solution for that since JavaScript can't manage CSS pseudo-selectors.

What you can do instead is to use $('.wrapper').hover() that adds/removes a CSS 'hover' class, then when you click close, remove the 'hover' class you just added.
 
Back
Top