Skip to content

Instantly share code, notes, and snippets.

@alexvas123
Last active September 3, 2016 12:07
Show Gist options
  • Save alexvas123/2c229c954bf9da2d650268b9f4fbaf92 to your computer and use it in GitHub Desktop.
Save alexvas123/2c229c954bf9da2d650268b9f4fbaf92 to your computer and use it in GitHub Desktop.
Page Scroll to ID
// jQuery
$("a[href^='#section']").on('click', function (event) {
var target = $(this.getAttribute('href'));
if (target.length) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 1000);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment