Jun
10
2013

Scroll to top

<a href="javascript:void(0);" onclick="jQuery('html, body').animate( { scrollTop: 0 }, 'slow' );">Go to top</a>

Or as a click handler:

$('body').on('click', '.top', function(){
    $('html, body').animate( { scrollTop: 0 }, 'slow' );
    return false;
});

Leave a comment