Fading elements in and out without changing the layout of the page

Also

instead of .fadeIn() you can .animate({opacity:1})
and instead of .fadeOut() you can .animate({opacity:0})

Leave a Comment