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
$('.target') .hide() .slideDown(500, 'swing') .css('opacity', 0) .animate({opacity: 1}, {queue: false, duration: 1000});