$('#js_go-top').on('click', function(e) {
    $('html, body').animate({ 
        scrollTop: 0
    }, 'slow');
    e.preventDefault();
});