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
$(document).ready(function() {
$("#test").bind("click", function() {
setTimeout(function() {
$('#slidedown').slideDown("slow");
}, 500);
$("#content").fadeOut(500);
$(this).stop().animate({ "opacity": "1" }, "slow");
});
});
this is for fade out but i think it's what your after. please have a look at the example too: http://jsfiddle.net/oddacon/M44md/