/* One page Slide */ $(document).ready(function() { $('.link').on('click', function(e){ var hash = $(this).attr('href'); $('html,body').animate({ scrollTop: $(hash).offset().top }, 800); return false; }); }); /* Top button */ $(document).ready(function() { // Show or hide the sticky footer button $(window).scroll(function() { if ($(this).scrollTop() > 200) { $('.go-top').fadeIn(200); } else { $('.go-top').fadeOut(200); } }); // Animate the scroll to top $('.go-top').click(function(event) { event.preventDefault(); $('html, body').animate({scrollTop: 0}, 300); }) });