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

#78114
digganet
Member

Hi elneco,

I’m very pleased that you like my site! ;)

I use jQuery:

Code:
$(‘.footer_infoData’)
.mouseenter(function() { $(this).find(‘li, li a’).stop().animate({ color: ‘#9DC153’ }, 500); })
.mouseleave(function() { $(this).find(‘li, li a’).stop().animate({ color: ‘#071F09’ }, 500); });

Works with all major Browsers.