Skip to content

Instantly share code, notes, and snippets.

@migliori
Last active May 8, 2018 08:11
Show Gist options
  • Save migliori/716105909561bc1e51e9ffff4602c89f to your computer and use it in GitHub Desktop.
Save migliori/716105909561bc1e51e9ffff4602c89f to your computer and use it in GitHub Desktop.
Smooth scroll to anchor
// anchors smooth scroll
$('a[href^="#"]').on('click', function() {
var $targetLink = $('#' + $.attr(this, 'href').substr(1)),
dataToggle = $(this).attr('data-toggle');
if($targetLink[0] && dataToggle != 'modal' && dataToggle != 'collapse') {
$('html, body').animate({
scrollTop: $targetLink.offset().top - 110
}, 500);
}
return;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment