jQuery(document).ready(function() { var hash = location.hash; var offset = jQuery('body').find(hash).offset(); if (!offset) return; var scrollto = offset.top - 0; // minus Headerhöhe jQuery('html, body').animate({ scrollTop: scrollto }, 300); });