$(document).ready(function(){ $("#menu").on("click","a", function (event) { event.preventDefault(); var id = $(this).attr('href'), top = $(id).offset().top; $('body,html').animate({scrollTop: top}, 1500); }); }); $(window).scroll(function() { if ($(this).scrollTop() > 100) { if ($('#upbutton').is(':hidden')) { $('#upbutton').css({opacity : 1}).fadeIn('slow'); } } else { $('#upbutton').stop(true, false).fadeOut('fast'); } }); $('#upbutton').click(function() { $('html, body').stop().animate({scrollTop : 0}, 300); });