I have written this little jquery, which has a nice hover effect.
However, on certain mouse hovers, the sccipt seems to be faulty, as it seems to cause a loop of animate effects. (Mostly when you hover between the 2nd and 3rd div)
Does anybody have a suggestion how to fix this issue?
http://test.gifix.de/index.php
Sorry for the poor description of the problem, but I am sure you will see it once you hover a bit over the example 😉
Thanks for every help,
Scott
Your animations are queuing up. To prevent this, use the jQuery stop function: http://api.jquery.com/stop/
I updated your code to include the use of the stop function. It now works for me. Here is the updated code: