The slideDown applied to a div does the slideDown but doesn\'t scroll the page down and the div slided down div remains hidden from view. Is there a way to scroll the page d
Quick demo here
Basically all you need is
$('html, body').animate({ scrollTop: $('#yourDiv').offset().top }, 3000);