Skip to content

Instantly share code, notes, and snippets.

@madastro
Last active September 14, 2017 06:41
Show Gist options
  • Save madastro/9e9d6f9179523b0fbe72 to your computer and use it in GitHub Desktop.
Save madastro/9e9d6f9179523b0fbe72 to your computer and use it in GitHub Desktop.
jQuery - Animated scroll to anchor
jQuery(function($) {
$('a[href^="#signup"]').on('click', function(e) {
e.preventDefault();
$('html, body').stop().animate({
scrollTop: $('#signup').offset().top
}, 1000, 'swing', function() {
$('#email').focus();
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment