I'm doing something like this http://jsfiddle.net/8ErSL/2/
When you hover any text box (div) a little icon will appear inside it.
I wanted to stop the fade effect of the icon from repeating itself as many times as I accidently hover the div, you know it's kinda annoying. I know there was a way to prevent this by adding .stop()
and It worked like a charm.
but when I tried to delay the appearance of the icon by adding .delay(500)
the .stop()
has become useless and the fade effects keep repeating as you keep moving the cursor among the divs.
How can I override this problem? I need to both delay and prevent the repeated fade effect.
Thanks