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
$.extend($.expr[':'],{
inView: function(a) {
var st = (document.documentElement.scrollTop || document.body.scrollTop),
ot = $(a).offset().top,
wh = (window.innerHeight && window.innerHeight < $(window).height()) ? window.innerHeight : $(window).height();
return ot > st && ($(a).height() + ot) < (st + wh);
}
});
if ($('#whatever').is(':not(:inView)')) {
$('html,body').animate({
scrollTop: $('#whatever').offset().top
}, 3000);
}
Quick demo here
Basically all you need is
$('html, body').animate({
scrollTop: $('#yourDiv').offset().top
}, 3000);