This blog is my memo for collecting IT stuffs. And some my free softwares.Please use facebook to leave comments.
Get the position of object that you want to move to using offset().top, and change scrollTop of body using animate() function.
var divOffset = $('#hogeContainer').offset().top; $('body').animate({scrollTop: divOffset + 'px'}, 1000);