Hi there,
You could use the hoverIntent plugin or update the script with
suggestions posted here:
http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup
--Karl
____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Mar 25, 2009, at 8:00 AM, MindTooth wrote:
Hello.
Please take a look at this code:
[code] $(".box img").fadeTo("500", 0.6); // This sets
the opacity
of the thumbs to fade down to 60% when the page loads
$(".box img").hover(function(){
$(this).fadeTo("normal", 1.0); // This
should set the opacity to
100% on hover
},function(){
$(this).fadeTo("slow", 0.6); // This should set
the opacity
back to 60% on mouseout
})[/code]
The problem I experience is that when I hover the images several times
in a row. They blink as many times as I have hovered them.
Appreciated if someone could direct me to a solution.
Birger :)