(function($){ $(function() { $('a[href^="#"]').click(function(event) { var id = $(this).attr("href"); var offset = 0; var target = $(id).offset().top - offset; $('html, body').animate({scrollTop:target}, 800,"easeOutExpo"); event.preventDefault(); return false; }); }); })(jQuery);