I know nothing about JQuery fadein/fadeout. please give me code to have like this. when link is clicked the description below will hide & show w/ fading effect ex. Thank you
You can get it from jquery examples. like http://www.geeksucks.com/toolbox/23-jquery-fade-in-fade-out-effect.htm
First, you need the link to get recognized by jQuery. So add an ID to the link. <a href="#about" id="a-about">About</a> HTML: In JavaScript, add the following code $(document).ready(function() { $('#a-about').toggle(function() { $(this).fadein(); }, function() { $(this).fadeout(); } }); HTML: Hope it helps!