I\'m trying to load #content of a url via AJAX using jQuery within #primary. It loads but doesn\'t fadeIn. What am I doing wrong?
$(\'.menu a\').live(\'clic
Actually I was able to do it by applying the effect to the wrapper div instead...
$('#primary').fadeOut('slow', function(){ $('#primary').load(link+' #content', function(){ $('#primary').fadeIn('slow'); }); });