I\'ve got a div with display: none; Now I want to show it using both: fadeIn and slideDown simultaneously.
$(this).slideDown({duration: \'slow\', queue: fals
Use animate() instead of fadeIn():
animate()
fadeIn()
$(this) .css('opacity', 0) .slideDown('slow') .animate( { opacity: 1 }, { queue: false, duration: 'slow' } );