How to do the effect in jquery with fadein/fadeout when link is clicked? Example: http://www.wallpaperama.com/forums/javascript-how-to-show-and-hide-content-onclick-expand-appear-disapear-link-t1055.html
http://api.jquery.com/fadeIn/ function hideshow(id) { $("#" + id).click(function() { $(this).is(":hidden") ? $(this).fadeIn("slow") : $(this).fadeOut("slow"); }); } hideshow("agent99"); Code (markup): Something like that, untested.