Skip to content

Instantly share code, notes, and snippets.

@glennyboy
Last active February 24, 2021 18:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glennyboy/8bba6a20a81d20a9d2b46b56a97b9067 to your computer and use it in GitHub Desktop.
Save glennyboy/8bba6a20a81d20a9d2b46b56a97b9067 to your computer and use it in GitHub Desktop.
Scroll To with Fixed Header
(function($) {
$("a[href*=\\#]:not([href=\\#])").click(function()
{
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname)
{
var target = $(this.hash),
headerHeight = $(".header-wrapper").height() + 48; // Get fixed header height
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length)
{
$('html,body').animate({
scrollTop: target.offset().top - headerHeight
}, 800);
return false;
}
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment