(function($, window) { var adjustAnchor = function() { var $anchor = $(':target'), fixedElementHeight = 100; //adjust menu Height if ($anchor.length > 0) { $('html, body') .stop() .animate({ scrollTop: $anchor.offset().top - fixedElementHeight }, 800); } }; $(window).on('hashchange load', function() { adjustAnchor(); }); })(jQuery, window);