Problem with jQuery's fade in/out in Firefox
Posted
by GaVrA
on Stack Overflow
See other posts from Stack Overflow
or by GaVrA
Published on 2009-09-04T17:08:45Z
Indexed on
2010/04/29
18:07 UTC
Read the original article
Hit count: 309
I already asked here with no luck, but feel free to read it:
http://groups.google.com/group/jquery-en/browse%5Fthread/thread/fdf7a584b30d4bb9
Hmm check out my site:
on top-right position i have search field. When you move your mouse over there small text shows up that says:
Napredna pretraga
Now, for some reason those letters change color to like yellow for very short period of time in ff 3.5 and to some strange color in safari 4.0.2 for win. In ie8, opera and chrome it works just the way it should, white letters stay white during the animation.
Any sugestions?
here is function that do this job ;)
$('#header_search').hover(function() {
$('#naprednaPretraga').stop({clearQueue:true}).show().animate({"opacity" : 1},500);
}, function(){
$('#naprednaPretraga').stop({clearQueue:true}).animate({"opacity" : 0},500,function() {
$('#naprednaPretraga').hide();
});
});
© Stack Overflow or respective owner