um rolagem para o div js
document.getElementById('youridhere').scrollIntoView();
Successful Sloth
document.getElementById('youridhere').scrollIntoView();
element.scrollIntoView();
//scroll to id
var $root = $('html, body');
$('a[href^="#"]').click(function () {
var href = $.attr(this, 'href');
$root.animate({
scrollTop: $(href).offset().top
}, 500, function () {
window.location.hash = href;
});
return false;
});