/* * Scroll the page to the URL Hash, IF URL contains one * Author: Jesse Matlock - @revivemarketing */ if (window.location.hash) { var element = window.location.hash; if ($(element).length) { $('html, body').animate({ scrollTop: $(element).offset().top // IF header is fixed, add height of header in px. eg. '- 140' }, slow, 'linear'); } }