var scrollBottom = $(document).height() - $(window).height() - $(window).scrollTop(); $('#go_btn .go_top').click(function() { $('html,body').animate({ scrollTop: 0 }, 700); }); $('#go_btn .go_bottom').click(function() { $('html,body').animate({ scrollTop: scrollBottom }, 700); });