for IE6, explicitly setting a background color on the element should
do the trick. IE7 is a bit more complicated. You might want to have a
look at Mike Alsup's Fade Test page and view source:
http://malsup.com/jquery/fadetest.html
--Karl
____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Mar 25, 2009, at 12:39 PM, MindTooth wrote:
Thank you so much. That fixed it completely. Much appreciated.
Just asking, could you provide some info regarding IE compatible.
Since now my PNGs has rough edges. Looks like som chainsaw blades.
Birger :)
On Mar 25, 3:52 pm, Karl Swedberg <k...@englishrules.com> wrote:
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-
que...
--Karl
____________
Karl Swedbergwww.englishrules.comwww.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 :)