jQuery(document).ready(function($) { var $page = $('html, body'); $('a[href*="#"]').click(function() { $page.animate({ scrollTop: $($.attr(this, 'href')).offset().top-50 }, 600); return false; }); });