ScrollTop and SetInterval
by Marventus
CSS
body {
background: red;
height: 2000px;
}
JavaScript
$(document).ready(function(){
var count = 0,
timer;
if( count < 1 ) {
console.log("timer set!");
timer = setInterval(function(){
$(window).scrollTop(0);
clearInterval(timer);
}, 1);
count++;
}
});