I am making a website, and it allows users to change view options. I use jQuery to smooth animations for font changing. It fades the whole page out and back in again with th
Why not use jQuery's built-in functions fadeIn and fadeOut?
jQuery
$('#font-classic').click(function(){ $('body').fadeOut('normal', function(){ $('body').fadeIn(); }}); });