Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Nice Txt Fade that i’m interested in Re: Nice Txt Fade that i’m interested in

#78036
jamygolden
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);
});