Is there a way to implement jQuery fading in when an element becomes visible?
Check out this code snippet for reference: http://jsfiddle.net/IntelandBacon/nWscz/
$('.expand').click(function () {
$(this).next().css("visibility", "visible");
$(this).next().fadeToggle("slow");
});
Appreciate any guidance or suggestions.