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();
});
});