Forums

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

Home Forums JavaScript jquery fade effect Re: jquery fade effect

#77206
Damion
Member

$('#desc').click(function() {
$('#descText').fadeIn(2000);
}):

If you click on a div with an ID of ‘desc’ a div with an ID of ‘descText’ will fade in over 2 seconds.

Hope this helps,
Damion.