Skip to content

Instantly share code, notes, and snippets.

@jeremycaldwell
Last active January 3, 2018 17:33
Show Gist options
  • Save jeremycaldwell/348b93ffd22a97d83c4aa8410a59b6c0 to your computer and use it in GitHub Desktop.
Save jeremycaldwell/348b93ffd22a97d83c4aa8410a59b6c0 to your computer and use it in GitHub Desktop.
Smooth scroll
// Smooth scroll.
Drupal.behaviors.smoothScroll = {
attach: function(context, settings) {
$('.scroll').click(function(event) {
event.preventDefault();
$('html,body').animate({
scrollTop: $(this.hash).offset().top
}, 500);
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment