The script below does not fire the slideDown and fadeTo at the same time. It does not fade in until the slide down finishes.
<script>
$( document ).ready(function() {
var obj = $("#example");
obj.slideDown(450);
obj.fadeTo(450,1);
});
</script>
How can I simultaneously slide the object down while also fading it in?
Also, the object is just a normal div.