Skip to content

Instantly share code, notes, and snippets.

@ZackFox
Created September 5, 2015 06:02
Show Gist options
  • Save ZackFox/73441bd4b5c524c7afbb to your computer and use it in GitHub Desktop.
Save ZackFox/73441bd4b5c524c7afbb to your computer and use it in GitHub Desktop.
$(function() {
$('.page-scroll').click(function(event) {
event.preventDefault();
$('html, body').animate(
{scrollTop: $( $(this).attr('href') ).offset().top }
, 1500 );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment