Check this out: http://novarose.co.cc/web2/
Fade effects are kinda messed up and I do not how to make then work properly.
I want code to run in following sequence:
- Fade out block
- Insert new content
- Fade in block
My jQuery code for that page:
$('#navigation a').click(function(){ $.get("page.php", { page: $(this).attr('id') }, function(data){ $('#content').fadeOut('slow').html(data).fadeIn('slow'); }); });