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
start with height:0px and opacity:0; filter: alpha(opacity = 0) then on the action do:
height:0px
opacity:0; filter: alpha(opacity = 0)
$(this).stop().animate({ height: 200, opacity: 1 }, 350);
Change the height (i set to 200) and the duration (i set to 350) to whatever you want.