With animation
$('html, body').animate({
scrollTop: offset.top,
scrollLeft: offset.left
}, 'fast');
Without animation
window.scroll(0,0)
$('html, body').animate({
scrollTop: offset.top,
scrollLeft: offset.left
}, 'fast');
window.scroll(0,0)