Home › Forums › JavaScript › Nice Txt Fade that i’m interested in › Re: Nice Txt Fade that i’m interested in
June 15, 2010 at 6:34 pm
#78036
Member
You could do it like this:
Code:
$(“ul”).css(“opacity”, “0.1”).hover(function(){
$(this).fadeTo(400, 1);
}, function(){
$(this).fadeTo(400, 0.1);
});
$(this).fadeTo(400, 1);
}, function(){
$(this).fadeTo(400, 0.1);
});