Scroll to top animate
Scroll to top animate
HTML
<div id="mydiv">DATA FOR SAMPLE 1</div>
<div id="what">SAMPLE DATA</div>
CSS
div {height: 900px; border:2px solid #333; padding:10px;}
JavaScript
$(document).ready(function () {
// Handler for .ready() called.
$('html, body').animate({
scrollTop: $('#what').offset().top
}, 'slow');
});