Is there an alternative to fadeOut() that doesn\'t use display:none for the style? I\'d like to just use visibility hidden to avoid any sort of shifting in the page layout?
Custom animation is an alternative http://api.jquery.com/animate/
.animate({opacity: 0.0}, 5000, 'linear', callback);